Monday, December 30, 2019

Problem when executing "slmgr.vbs / dlv all" command - a large output window does not fit the screen

The window that is displayed by this command cannot be fully viewed, since its dimensions are usually much larger than the current screen resolution.

To solve the problem, execute the command in the console:

cscript %SystemRoot%\system32\slmgr.vbs /dlv all 2>&1

or output to a text file with a cmd-script:

@echo Working.........Don't close!!!
@cscript %SystemRoot%\system32\slmgr.vbs /dlv all >%cd%\Output.txt


No comments:

Post a Comment