-
-
Notifications
You must be signed in to change notification settings - Fork 908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't create a 'null' file #211
base: main
Are you sure you want to change the base?
Conversation
…xed an incorrect parameter warning when unmounting registry, prompt to delete old ISO, extract chosen edition from `install.wim` earlier than stock, use ScratchDisk instead of SystemDrive, add `.gitignore`
This one didn't worked for me. Version of PowerShell:
|
This should work. |
where is |
oohh.. my bad. |
tested even shell commands like reg /? | Out-Null will omit output except errors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please search and replace
> null
>null
> $null
with
| Out-Null
The reason why the script creates a file "null" is that the cmd command for Out-Null is in fact |
@eugenesvk this one can be closed. Please watch out, open PRs do not overwrite the changes by Re-adding nul /null commands. |
As far as I understand, the proper way is to redirect to
$null
, otherwise currently the script creates an actualnull
file