
Stephen Valdinger
Automation nerd. I love all things Powershell, and am eager to teach others. I also love fishing, and woodworking. My wife calls be weird, but I like to think of it as eclectic.
Comments
-
I'll just add my code here for the benefit of the comunity. Just copy and paste this into a new file and call it something relevant with a .ps1 extension. I used Install-Autologon.ps1. For the pack...
-
I actually have a powershell script written that does this exact thing. We have a use case where we need to have a lab auto-login for special events sometimes, so we PDQ this to them, and then anot...
-
Yup! Give this a read: https://technet.microsoft.com/en-us/library/cc785665(v=ws.10).aspx
-
The nice thing about about group policy is it gets applied Local > Site > Domain > OU. So if you make changes in Group Policy that conflict with the Local Policy, unless local policy is enforced, y...
-
I've not done it, but you could try wrapping secedit into a powershell script with a pre-configured cfg file that has your changes in it that you can do a secedit /import [somefile].cfg .... Woul...
-
Yes, that is going to be an issue for you then. Unless they are going to be using a VPN from home, then PDQ will talk to them, so long as your VPN is configured correctly. Do you have a test machin...
-
Do they bring their machines to the schools every now and then? I'm in education as well. We use an Enterprise license, but we have Faculty and Staff on a Heartbeat schedule. Since most of them are...
-
When you say outside of your network, what are you referring too? Outside of your domain? Not able to be seen in DNS? Can you clarify a little bit your use case?
-
Have you tried running the installer outside of PDQ? Use a test machine and just install it from the command line using your switches. See what happens when you do it that way. If it errors out in ...
-
What application are you looking to uninstall? If it is an msi package, the /X parameter is pretty commonly used to uninstall it. msiexec.exe /x A quick google of command line install/uninstall s...