From fde87cbbc8ca945f4b0b77bbe953bb631d034034 Mon Sep 17 00:00:00 2001 From: David Yoder Date: Wed, 7 Sep 2022 10:07:09 -0400 Subject: [PATCH] install at machine level --- Install-SimpleInOut.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Install-SimpleInOut.ps1 b/Install-SimpleInOut.ps1 index d865f34..4b57d72 100644 --- a/Install-SimpleInOut.ps1 +++ b/Install-SimpleInOut.ps1 @@ -6,7 +6,7 @@ $INSTALLER = Download-File -URL $URL # Install the app LogMsg "Installing latest version of Simple In/Out from ""${INSTALLER}""" -Try { Start-Process "msiexec.exe" -ArgumentList "/i ${INSTALLER} /qn /norestart" -Wait } +Try { Start-Process "msiexec.exe" -ArgumentList "/i ${INSTALLER} /qn /norestart ALLUSERS=1" -Wait } Catch { LogErr $_.Exception.Message } # Delete the installer