B
B
BotaniQ_Q2017-06-18 02:08:20
Windows
BotaniQ_Q, 2017-06-18 02:08:20

How do I give users general access to everything in Windows or make it so that the system always sees me as an administrator?

The bottom line is that you constantly need to allow yourself access to the folder, open the console through the admin, other programs and get sick, I want to always be root and in everything, how to do this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
R
res2001, 2017-06-18
@res2001

Generally on a question - disconnect UAC.
But really - fight with your desires. After all, the system will ask permission to access not only from you, but also from the virus that you catch without noticing. With UAC enabled, you have a chance to see this in time.
When accessing a folder, the system asks for permission if you do not have this access. Just give yourself access to this folder. This does not apply to system folders - leave the default access settings there.

E
Ezhyg, 2017-06-18
@Ezhyg

constantly need to allow yourself access to the folder

Become the owner, remove access from "System".
Create a task in the scheduler. For example, save the code below as xml, replace the computer name and user , import into the scheduler and then in the job settings - specify the password.
spoiler
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
  <RegistrationInfo>
    <Date>2010-04-24T22:00:20.7924203</Date>
    <Author>ЁжЫГ</Author>
  </RegistrationInfo>
  <Triggers />
  <Principals>
    <Principal id="Author">
      <UserId>Имя_Компьютера\Имя_Пользователя</UserId>
      <LogonType>InteractiveToken</LogonType>
      <RunLevel>HighestAvailable</RunLevel>
    </Principal>
  </Principals>
  <Settings>
    <MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
    <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
    <AllowHardTerminate>false</AllowHardTerminate>
    <StartWhenAvailable>false</StartWhenAvailable>
    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
    <IdleSettings>
      <StopOnIdleEnd>true</StopOnIdleEnd>
      <RestartOnIdle>false</RestartOnIdle>
    </IdleSettings>
    <AllowStartOnDemand>true</AllowStartOnDemand>
    <Enabled>true</Enabled>
    <Hidden>false</Hidden>
    <RunOnlyIfIdle>false</RunOnlyIfIdle>
    <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
    <UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine>
    <WakeToRun>false</WakeToRun>
    <ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
    <Priority>7</Priority>
  </Settings>
  <Actions Context="Author">
    <Exec>
      <Command>%windir%\system32\cmd.exe</Command>
    </Exec>
  </Actions>
</Task>

The rest of the necessary programs, if you think about it, there will be 5 maximum of them :).
And, most importantly, to assess the risks of constant work in the "I am ROOT" mode

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question