Recent content by BKChedlia

  1. BKChedlia

    Windows 10 windows extract files

    I found this code to watch the folder, but I am a begginer in powershell, so I don't know how it will work automatically, and how to add your code to this code : $folder = 'c:\....' $filter = '*.*' $fsw = New-Object IO.FileSystemWatcher $folder, $filter...
  2. BKChedlia

    Windows 10 windows extract files

    thank you for the help,yes I would like to unzip added zip files automatically, I will try it, meanwhile I found a batch : @echo off setlocal cd /d %~dp0 Call :UnZipFile "C:\path\unzipped\" "c:\path\zipped\batch.zip" exit /b :UnZipFile <ExtractTo> <newzipfile> set vbs="%temp%\_.vbs" if exist...
  3. BKChedlia

    Windows 10 windows extract files

    Hi, I don't know if it's a right place to ask this question ... I have a shared folder of zip files, I want to unzip them and put the new folder(same name as zip folder with files extracted in it ) in new location each time there's a new zip in shared folder, is there a tool how can do it ? or...
Back
Top