User Tools

Site Tools


software:microsoft:windows:commands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:microsoft:windows:commands [2017/02/06 17:00] superwizardsoftware:microsoft:windows:commands [2024/03/09 21:11] (current) – [Windows command line continue line with ^ () or use variables] superwizard
Line 1: Line 1:
 +====== Windows command line continue line with ^ () or use variables ======
 +
 +<WRAP center round box >
 +
 +2024-03-09
 +
 +
 +Multiple commands can be put in parenthesis and spread over numerous lines; so something like echo hi && echo hello can be put like this:
 +
 +  ( echo hi
 +    echo hello )
 +
 +Also variables can help:
 +
 +  set AFILEPATH="C:\SOME\LONG\PATH\TO\A\FILE"
 +  if exist %AFILEPATH% (
 +    start "" /b %AFILEPATH% -option C:\PATH\TO\SETTING...
 +  ) else (
 +  ..
 +
 +https://stackoverflow.com/questions/69068/split-long-commands-in-multiple-lines-through-windows-batch-file/21000752#21000752
 +
 +
 +</WRAP>
 +
 +
 +
 +
 +====== Scanner and Camera Wizard ======
 +
 +From: https://answers.microsoft.com/en-us/windows/forum/windows_xp-pictures/launching-windows-scanner-and-camera-wizard/ff02de3a-9718-4ec9-a703-879dc6eb1ffb
 +
 +<code>
 +The executable for the Scanner and Camera Wizard is:
 +
 +   wiaacmgr.exe
 +
 +C:\Windows\System32\wiaacmgr.exe
 +
 +</code>
 +
 ====== Change lock screen timeout ====== ====== Change lock screen timeout ======
  
software/microsoft/windows/commands.1486400457.txt.gz · Last modified: 2017/02/06 17:00 by superwizard