You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows Shadow Copies.csc script preview command Echo stops processing of futher scripts until the therefore opened command line window is manually closed.
#27
Open
ladiko opened this issue
Oct 14, 2021
· 0 comments
Forget about everything at the end. I now see the real problem. I read through #Rules.txt and came to this conclusion that everything at the end is bullshit. I just wondered why running the preview, leaves a command line window open. Couldn't it be change like this:
When preview is run, the preview executes each TaskX=Echo|blabla command with cmd /k and therefore leaves the command line window open so one can read the output, but this interrupts the whole process of running all previews one after another until the command line window is closed. couldn't this be done like Exec with an optional SHOWCLI at the end? So the command could be normally cmd /k command line here but if it's TaskX=Echo|command line here|SHOWCLI, it's executed with cmd /c and the output is redirected and printed in the preview window of clearmgr+? So one get's the command line output, but the process continues?
#########################
Old Title: I have a problem with Windows Shadow Copies.csc on Windows 11 and the search lead me to #18.
The current file seems updated and says
[Files]
Task1=Echo|%WinDir%\SysNative\vssadmin list shadows
Task2=Exec|%WinDir%\SysNative\vssadmin delete shadows /all|SHOWCLI
I searched a bit and starting Windows Vista x64 the folder C:\Windows\SysNative was introduced as a link to C:\Windows\System32. System32 contained all 64-bit files, while SysWOW64 contained the 32-bit files and 32-bit programs where redirected there. A bit unreasonable to me, but okay...
In case a 32-bit program wanted access to a 64-bit file, it could use the redirect via C:\Windows\SysNative
But on Windows 11 x64:
Windows PowerShell
Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.
Installieren Sie die neueste PowerShell für neue Funktionen und Verbesserungen! https://aka.ms/PSWindows
PS C:\Users\ladik>$env:PROCESSOR_ARCHITECTURE
AMD64
PS C:\Users\ladik> C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
Windows PowerShell
Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.
Installieren Sie die neueste PowerShell für neue Funktionen und Verbesserungen! https://aka.ms/PSWindows
PS C:\Users\ladik>$env:PROCESSOR_ARCHITECTURE
x86
PS C:\Users\ladik> cmd
Microsoft Windows [Version10.0.22000.258]
(c) Microsoft Corporation. Alle Rechte vorbehalten.
C:\Users\ladik>dir /AD %WINDIR%\System*
Datenträger in Laufwerk C: ist SYSTEM
Volumeseriennummer: 1089-3CDD
Verzeichnis von C:\Windows
05.06.202114:10<DIR> System
14.10.202115:42<DIR> System32
05.06.202120:00<DIR> SystemApps
12.10.202122:52<DIR> SystemResources
14.10.202109:44<DIR> SystemTemp
0 Datei(en),0 Bytes
5 Verzeichnis(se),301.610.512.384 Bytes frei
It seems like this redirect mechanism doesn't exist anymore in Windows 11. No idea how to handle this for all OS version. other than changing it by hand wont work for me atm.
The text was updated successfully, but these errors were encountered:
ladiko
changed the title
No folder %WinDir%\SysNative on Windows 11 anymore as used by script Windows Shadow Copies.csc
Preview command Echo stops processing of futher scripts until the therefore opened command line window is manually closed.
Oct 14, 2021
ladiko
changed the title
Preview command Echo stops processing of futher scripts until the therefore opened command line window is manually closed.
Windows Shadow Copies.csc script preview command Echo stops processing of futher scripts until the therefore opened command line window is manually closed.
Oct 14, 2021
Forget about everything at the end. I now see the real problem. I read through #Rules.txt and came to this conclusion that everything at the end is bullshit. I just wondered why running the preview, leaves a command line window open. Couldn't it be change like this:
When preview is run, the preview executes each
TaskX=Echo|blabla
command withcmd /k
and therefore leaves the command line window open so one can read the output, but this interrupts the whole process of running all previews one after another until the command line window is closed. couldn't this be done likeExec
with an optionalSHOWCLI
at the end? So the command could be normallycmd /k command line here
but if it'sTaskX=Echo|command line here|SHOWCLI
, it's executed withcmd /c
and the output is redirected and printed in the preview window of clearmgr+? So one get's the command line output, but the process continues?#########################
Old Title: I have a problem with Windows Shadow Copies.csc on Windows 11 and the search lead me to #18.
The current file seems updated and says
I searched a bit and starting Windows Vista x64 the folder C:\Windows\SysNative was introduced as a link to C:\Windows\System32. System32 contained all 64-bit files, while SysWOW64 contained the 32-bit files and 32-bit programs where redirected there. A bit unreasonable to me, but okay...
In case a 32-bit program wanted access to a 64-bit file, it could use the redirect via C:\Windows\SysNative
But on Windows 11 x64:
It seems like this redirect mechanism doesn't exist anymore in Windows 11. No idea how to handle this for all OS version. other than changing it by hand wont work for me atm.
The text was updated successfully, but these errors were encountered: