Guest User

Untitled

a guest
Feb 4th, 2016
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. @Echo Off
  2. Title Edited Out Computer Setup...May the force be with you
  3. Echo Enabling Admin with pw
  4. net user administrator /active:yes
  5. net user edited out
  6. Echo.
  7. Echo Disabling User Account Control
  8. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f
  9. Echo.
  10. Echo Showing all Icons in Taskbar
  11. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v EnableAutoTray /t REG_DWORD /d 0 /f
  12. Echo.
  13. Echo Turning Off Windows Firewall for All Profiles
  14. netsh advfirewall set allprofiles state off
  15. Echo.
  16. Echo Enabling RDP and Remote Assistance
  17. reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
  18. reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fAllowToGetHelp /t REG_DWORD /d 1 /f
  19. Echo.
  20. Echo Displaying all Icons in Control Panel
  21. reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v ForceClassicControlPanel /t REG_DWORD /d 1 /f
  22. Echo.
  23. Echo Enabling File and printer sharing and Network Discovery
  24. netsh firewall set service type=fileandprint mode=enable profile=all
  25. netsh advfirewall firewall set rule group="Network Discovery" new enable=Yes
  26. Echo.
  27. Echo Importing Power Configuration
  28. powercfg -import E:\DentalPowerconfiguration.pow
  29. Echo.
  30. Echo Installing CCleaner with desired settings
  31. copy E:\ccsetup514.exe %Public%\Desktop
  32. %Public%\Desktop\ccsetup514.exe /S
  33. copy E:\ccleaner.ini "%ProgramFiles%\CCleaner"
  34. Echo.
  35. Echo Installing Latst versions of Chrome Firefox Malwarebytes and Avast..patience grasshoppa!
  36. copy E:\Ninite.exe %Public%\Desktop
  37. %Public%\Desktop\Ninite.exe
  38. Echo.
  39. Echo Installing GWX Control Panel
  40. copy E:\GwxControlPanelSetup.exe %Public%\Desktop
  41. %Public%\Desktop\GwxControlPanelSetup.exe
  42. pause
  43. Echo.
  44. Echo Deleting icons from Desktop and emptying Recycle Bin.
  45. erase /f "%Public%\Desktop\GWX Control Panel.lnk"
  46. erase /f "%Public%\Desktop\Avast Free Antivirus.lnk"
  47. erase /f "%Public%\Desktop\Malwarebytes Anti-Malware.lnk"
  48. erase /f "%Public%\Desktop\CCleaner.lnk"
  49. erase /f "%Public%\Desktop\Protected Workspace.lnk"
  50. erase /f "%Public%\Desktop\Dell Backup and Recovery.lnk"
  51. erase /f "%Public%\Desktop\Ninite.exe"
  52. erase /f "%Public%\Desktop\ccsetup514.exe"
  53. erase /f "%Public%\Desktop\GwxControlPanelSetup.exe"
  54. Echo.
  55. Echo Running CCleaner
  56. %ProgramFiles%\CCleaner\CCleaner.exe /Auto
  57. Echo.
  58. %windir%\system32\wuauclt.exe /detectnow
  59. %windir%\system32\wuauclt.exe /updatenow
  60. :End
Advertisement
Add Comment
Please, Sign In to add comment