vivre-motion
INSTANT BATCH for Windows | Stream Deck Plugin
SKU: VM-70061- Regular price
- € 0,00 EUR
- Regular price
-
€ 0,00 EUR - Sale price
- € 0,00 EUR
- Unit price
- per
Couldn't load pickup availability
Download ➔ Elgato Market Place
Instant Batch/PowerShell Plugin
With the Instant Batch Stream Deck Plugin, you can immediately execute Command Line Console scripts without extensive creation of Batch (.cmd) or PowerShell (.PS1) files. Optional parameters: run as administrator, minimized silent, and many more...
Batch CMD Examples
Show Autostart Folder
@ECHO OFF
COLOR 9F
start "" "%APPDATA%\\Microsoft\\Windows\\Start Menu\\Programs\\Startup"
pause
Reset Printer Spooler
@ECHO OFF
COLOR 9F
net stop spooler
del /Q /F %systemroot%\\System32\\spool\\PRINTERS\\*.*
net start spooler
ECHO Press any key to exit...
pause
Reset DNS Cache
@ECHO OFF
COLOR 9F
ipconfig /flushdns
ipconfig /release
ipconfig /renew
ECHO Press any key to exit...
pause
PowerShell Examples
Show Autostart Folder
Get-EventLog -LogName System -Source "EventLog" -Newest 1
Show WLAN Password
netsh wlan show profiles + netsh wlan show profile name="XYZ" key=clear
pause
System Information
Get-ComputerInfo | Select-Object OSName, OSVersion, CsSystemType, WindowsProductName, WindowsVersion
pause
Share

