Setting up Squid software: https://forum.squid-imaging.org/t/setting-up-the-software-on-a-windows-computer/77
- Right-click where you want to create the shortcut (desktop or folder)
- Select New → Shortcut from the context menu
- In the “Create Shortcut” wizard, enter one of these command options (replace the path with the path to your
Squid\software
directory):-
Basic execution (closes after script finishes):
powershell.exe -Command "cd 'C:\path\to\script\directory'; python script.py"
-
To keep PowerShell open after execution:
powershell.exe -NoExit -Command "cd 'C:\path\to\script\directory'; python script.py"
-