Using Powershell command in batch file using root directory as input and out directory as users desktop

318 Views Asked by At

I am trying to run the powershell command "compress-archive" from within a batch file using

setlocal
cd %~dp0
powershell Compress-Archive "-current directory of batchfile" "%USERPROFILE%\Desktop\Test.zip"

This works if I use the literal directories in the paths but I want this to be usable for anyone no matter what their root directory or user profile name is. How can I write this command so that the batch file will execute the powershell command and get the working directory of the batch file and output to the users desktop? I have been searching this site but I cant quite find the answer to this specific situation.

0

There are 0 best solutions below