Supress Output?
Kerri O'Brien
Is there a way to suppress the output of a deploy? I am running an icacls script to change permissions on folders (many nested folders and files) and have run into the output exceeding 15MB. I saw the fix here (https://support.pdq.com/knowledge-base/970), but I really don't need to see the output so why make a bigger file size.
0
Comments
You can pipe the output into NUL.
PowerShell has a few ways to do it, such as:
Great! That did it thank you.