You can run the script from anywhere, even on the Desktop.
you specify the paths witch the parameters.
So step1 is to create an empty File named AddVST3.ps1
Step 2 put the code into the file
Step 3 open Powershell and navigate to the directory where the file exists
step 4 run the command in Powershell
----
for Example with all setups in standardmode Sawstudio is in c:\sawstudio64 run following command
Code: Select all
.\AddVST3.ps1 -VST_Plugins c:\Sawstudio64\VST_PlugIns -VST3Directory C:\Program Files\Common Files\VST3
If You encounter an Errormessage regarding Executionpolicy you can check your current executionpolicy with
the command:
it should return restricted, remotesigned or others
in this case you have to enter following command:
Code: Select all
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
then run the script again
after this dont forget to reset your executionpolicy back to original.
mostly "Restricted"
Code: Select all
Set-ExecutionPolicy -ExecutionPolicy Restricted
hope this is clear for you
cu
You can run the script from anywhere, even on the Desktop.
you specify the paths witch the parameters.
So step1 is to create an empty File named AddVST3.ps1
Step 2 put the code into the file
Step 3 open Powershell and navigate to the directory where the file exists
step 4 run the command in Powershell
----
for Example with all setups in standardmode Sawstudio is in c:\sawstudio64 run following command
[code].\AddVST3.ps1 -VST_Plugins c:\Sawstudio64\VST_PlugIns -VST3Directory C:\Program Files\Common Files\VST3[/code]
If You encounter an Errormessage regarding Executionpolicy you can check your current executionpolicy with
the command:
[code]Get-ExecutionPolicy[/code]
it should return restricted, remotesigned or others
in this case you have to enter following command:
[code]Set-ExecutionPolicy -ExecutionPolicy RemoteSigned[/code]
then run the script again
after this dont forget to reset your executionpolicy back to original.
mostly "Restricted"
[code]Set-ExecutionPolicy -ExecutionPolicy Restricted[/code]
hope this is clear for you
cu