i can't talk specifically for cc3 only cc4, but hopefully some of the info will relate:
1. Do I need to re-create GPO from scratch? (Already done this, just not enabled at the moment)
I would, just for pure peace of mind to know that if anything is going funny, you created it, rather than wondering if it's an RM remnant.
2. All client computers in the network have an RM login screen, what is the fastest and safest way to remove this?
I know on CC4 there were 2 packages called RM LogonUI Banner and RM Gina which controlled the whole login screen appearance. If they exist on CC3 remove them and try that. The problem is, there will always be RM software/settings on the machine, you would be better off rebuilding or, at the very least getting a list of ALL RM components installed per machine and removing them all. I had a quick batch file that ran through all RM components to remove them which you can use:
Code:
@echo off
cls
echo Removing RM software..
REM wiperm.txt is the text file with uninstall info in
if not exist wiperm.txt GOTO NOTFOUND
FOR /F %%I IN (wiperm.txt) do msiexec /X %%I /Q /NORESTART
goto OK
:OK
echo All Done..
GOTO END
:NOTFOUND
echo wiperm.txt not found
:END
You then need to go into the registry to add/remove programs bit and get the UID of each program (for example {408BF571-41C1-42E7-B559-B1BD12B85226} ) and put them all in a txt file called wiperm.txt and then just run wiperm.bat (which is the code above).
With printers on 2008 you can do it via the group policy, along with shared/mapped drives.
I hope some of this helps