Solved Is It Correct????

incredibleX

New Member
Messages
5
Location
Pakistan
C:\>copy c:\windows\system32\sethc.exe c:\

is this command correct to copy sticky keys to C:\...
in my case it says

Access Denied
0 File(s) Copied.


why cant i copy it to dir c:\ ???? :huh::huh::huh:
 

My Computer

System One

  • OS
    Window 8
Probably, because UAC is on and you're running the command from non-elevated command prompt. Regular users don't have permissions to write to the root of the system drive. Try
Code:
md temp
copy c:\windows\system32\sethc.exe c:\temp\
or run cmd as administrator and use your command.
 
Last edited:

My Computer

System One

  • OS
    Windows 8 Pro x64
    Computer type
    Laptop
    System Manufacturer/Model
    HP Pavilion dv7t (17.3'', i7-2630QM, HD 6770M 1Gb, 8Gb RAM, 2 SSD@120Gb + 1 HDD@750Gb)
You're welcome.

UAC is User Account Control, I suggest you google it, as the concept has been around for 7 years.
md - make directory, it would create folder temp.

If your problem is solved, please mark the thread as such.
 

My Computer

System One

  • OS
    Windows 8 Pro x64
    Computer type
    Laptop
    System Manufacturer/Model
    HP Pavilion dv7t (17.3'', i7-2630QM, HD 6770M 1Gb, 8Gb RAM, 2 SSD@120Gb + 1 HDD@750Gb)
Back
Top