
Wei
Comments
-
I think you just need to create a Files & Directories scan profile to see if the following PowerShell module path exists or not on the target. C:\Program Files\WindowsPowerShell\Modules\PSWindowsUp...
-
There are number of threads answering your question: how to deploy Windows Feature Update with PDQ Deploy https://help.pdq.com/hc/en-us/community/posts/360050792172-Use-PDQ-Deploy-to-push-In-Place-...
-
Cumulative Updates are for Windows 10/Server 2016/2019. Monthly Rollup/Security Only are for Win7/Win8.1/2012R2..ect If you want to effectively manage patching in a Microsoft environment, you need ...
-
Do you have AWS transit gateway setup ? https://aws.amazon.com/transit-gateway/ If not I think it's a lot easier and more secure to manage your EC2s with SSM agent than PDQ.
-
The main benefit is all the admins can deploy from the same public package repo. I think it's better than the terminal server because running multiple PDQ Deploy Console sessions at same time can b...
-
You may want to include "-Confirm:false" in your code or just use the built-in file copy in PDQ-Deploy.
-
You can pass value to MSI with switches. https://www.pdq.com/blog/install-silent-finding-silent-parameters/ Or track down the client ID in registry and push out the client ID as a reg file after in...
-
Execute-Process -Path "$dirFiles\android-studio-ide-173.4819257-windows.exe" -Parameters "/NCRC /S /D" -IgnoreExitCodes '1223' https://github.com/PSAppDeployToolkit/PSAppDeployToolkit/issues/365
-
Step 1, Create your code and test it locally Step 2, Build package with your code Step 3, Test your package with a small target list Step 4, If everything works out well, you can do the production ...
-
You can do it with PowerShell or setup Microsoft LAPS to rotate your local admin password. $Admin_Account = Get-LocalUser -Name "Your_local_admin" $Admin_Account | Set-LocalUser -Password $New_Pass...