@Joe-Schmitt said in Is there a way to query or poll computers with FOG client on them?:
@maveriick you could use GPO to push out a script that re-installs the client.
This is the best option for you. You can find command line arguments that the new client accepts in the article that Joe linked below. You’d use msiexec to first uninstall the client, and then use it again to install it again - using the command line arguments to specify options like server address. This needs done in a startup script most likely - and you should check for the existence of some file if you don’t want computers doing it every time they startup. Just echo “hello” to some file called C:\fogReinstalled.txt or something, and then put your MSIEXEC statements inside of an if statement that checks for this file. The echo to the previously mentioned file would also be in the if statement. Play around with this, get it working manually first, then move to GPO startup script.