For editing the JSP files in the c: I have to run notepad and command prompt Run as Administrator every time. I am using windows 7 and only one user in the system. Can't I login to the system as administrator?
|
|
migrated from stackoverflow.com Jan 22 at 2:52
|
Maybe, this will help:
Update You have to first open |
|||||
|
|
You should be able to run everything as admin by logging on as admin, and turning off UAC. http://windows.microsoft.com/en-GB/windows-vista/Turn-User-Account-Control-on-or-off |
|||
|
|
|
It sounds like you placed the .jsp files in a location where standard user accounts don't have write access by default. This includes the root of the C: drive... standard user accounts no longer have write access to the root C:\ folder. This has been true since Windows 2000 and Windows XP. People have gotten away with it for a long time since then because so many run as an administrator account all the time, and so were able to write files to the C:\ folder anyway. Starting with Windows Vista, you know longer have administrator rights by default... even when logged in as the administrator account. Instead, to use your Administrator privileges you must use the "Run as Administrator" option on the context menu. To get around your file editing problem, you can change the security permissions on specific folders where your *.jsp files live to allow your specific user account to have write access to that folder. You probably should not do this to the entire C: drive. Instead, move the jsp files to a folder you can use. |
|||
|
|