WARNING:
If you were using some Grin miner, you will get system freeze using WildRig. That miner changes driver behavior, because of recommendation to use command setx GPU_MAX_WORKGROUP_SIZE 1024. So if you get freezes, now you need to specify worksize precisely. Like --opencl-launch 20x256 instead of --opencl-launch 20x0.
I never understood why most mining software comes with "setx" in the sample batch file. This is wrong and dangerous. The command "set" is what should be used.
set modifies the current shell's (the window's) environment values, and the change is available immediately, but it is temporary. The change will not affect other shells that are running, and as soon as you close the shell, the new value is lost until such time as you run set again.
setx modifies the value permanently, which affects all future shells, but does not modify the environment of the shells already running. You have to exit the shell and reopen it before the change will be available, but the value will remain modified until you change it again.