Is it possible to turn off windows file protection in windows server 2008?Unable to dcpromo new 2008 Server...
"You've called the wrong number" or "You called the wrong number"
Is there any official lore on the Far Realm?
How to fry ground beef so it is well-browned
Why must Chinese maps be obfuscated?
How to write a column outside the braces in a matrix?
Relationship between strut and baselineskip
Why do games have consumables?
Can I grease a crank spindle/bracket without disassembling the crank set?
How come there are so many candidates for the 2020 Democratic party presidential nomination?
What term is being referred to with "reflected-sound-of-underground-spirits"?
Aligning equation numbers vertically
Was there a Viking Exchange as well as a Columbian one?
Apply MapThread to all but one variable
Could the terminal length of components like resistors be reduced?
How to stop co-workers from teasing me because I know Russian?
Classification of surfaces
Like totally amazing interchangeable sister outfits II: The Revenge
Pre-plastic human skin alternative
Can SQL Server create collisions in system generated constraint names?
Why does Mind Blank stop the Feeblemind spell?
Two field separators (colon and space) in awk
How to display Aura JS Errors Lightning Out
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
Checks user level and limit the data before saving it to mongoDB
Is it possible to turn off windows file protection in windows server 2008?
Unable to dcpromo new 2008 Server in 2000 domainWindows 2008 Server AuthenticationChange folder permissions on 2008 terminal serverWindows Server 2008 Administrator can't take Ownership of fileAdding Windows 2008 R2 Standard 64 bit DC to Windows 2008 Standard 32 bit DomainUnable to Delete User Object in AD windows server 2008Windows Server 2008 RAID setupdefault group policy not found in windows server 2008 r2Windows server 2008 File Server problemsWindows Server: file system limitation
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm trying to create some custom event logs on my production domain controller by using sddl
and sceregvl.inf
(from %windir%inf
directory).
The problem is that when i try to save the edited file i get the windows file protection error which doesn't allow me to save the file.
Is there a way to disable it and then re-enable it?
windows-server-2008
add a comment |
I'm trying to create some custom event logs on my production domain controller by using sddl
and sceregvl.inf
(from %windir%inf
directory).
The problem is that when i try to save the edited file i get the windows file protection error which doesn't allow me to save the file.
Is there a way to disable it and then re-enable it?
windows-server-2008
add a comment |
I'm trying to create some custom event logs on my production domain controller by using sddl
and sceregvl.inf
(from %windir%inf
directory).
The problem is that when i try to save the edited file i get the windows file protection error which doesn't allow me to save the file.
Is there a way to disable it and then re-enable it?
windows-server-2008
I'm trying to create some custom event logs on my production domain controller by using sddl
and sceregvl.inf
(from %windir%inf
directory).
The problem is that when i try to save the edited file i get the windows file protection error which doesn't allow me to save the file.
Is there a way to disable it and then re-enable it?
windows-server-2008
windows-server-2008
edited 10 mins ago
Michael Hampton♦
176k27321651
176k27321651
asked Mar 29 '12 at 16:38
Itai GanotItai Ganot
6,9662271123
6,9662271123
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Why not create the eventlog through powershell ?
new-eventlog -logname "My eventlog name" -Source "My eventlog source"
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
add a comment |
whatever you're doing right now, you probably just need to "run as administrator" So if you're using computer managment, hold shift, right click computer managment and then select run as administrator. I'm pretty sure that'll do the trick.
Edit:
Check out this MS article, it's the sort of the same thing I'm saying. Whatever is doing the saving, needs to be running as the local administrator. Its eaither that, or you need to disable UAC.
http://support.microsoft.com/kb/923947
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f374908%2fis-it-possible-to-turn-off-windows-file-protection-in-windows-server-2008%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Why not create the eventlog through powershell ?
new-eventlog -logname "My eventlog name" -Source "My eventlog source"
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
add a comment |
Why not create the eventlog through powershell ?
new-eventlog -logname "My eventlog name" -Source "My eventlog source"
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
add a comment |
Why not create the eventlog through powershell ?
new-eventlog -logname "My eventlog name" -Source "My eventlog source"
Why not create the eventlog through powershell ?
new-eventlog -logname "My eventlog name" -Source "My eventlog source"
answered Apr 2 '12 at 17:29
Mathieu ChateauMathieu Chateau
3,1571110
3,1571110
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
add a comment |
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
The event log already exists, i'm trying to add the custom event log object in the local group policy, to be able to control the permissions on the log.
– Itai Ganot
Apr 2 '12 at 22:52
add a comment |
whatever you're doing right now, you probably just need to "run as administrator" So if you're using computer managment, hold shift, right click computer managment and then select run as administrator. I'm pretty sure that'll do the trick.
Edit:
Check out this MS article, it's the sort of the same thing I'm saying. Whatever is doing the saving, needs to be running as the local administrator. Its eaither that, or you need to disable UAC.
http://support.microsoft.com/kb/923947
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
add a comment |
whatever you're doing right now, you probably just need to "run as administrator" So if you're using computer managment, hold shift, right click computer managment and then select run as administrator. I'm pretty sure that'll do the trick.
Edit:
Check out this MS article, it's the sort of the same thing I'm saying. Whatever is doing the saving, needs to be running as the local administrator. Its eaither that, or you need to disable UAC.
http://support.microsoft.com/kb/923947
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
add a comment |
whatever you're doing right now, you probably just need to "run as administrator" So if you're using computer managment, hold shift, right click computer managment and then select run as administrator. I'm pretty sure that'll do the trick.
Edit:
Check out this MS article, it's the sort of the same thing I'm saying. Whatever is doing the saving, needs to be running as the local administrator. Its eaither that, or you need to disable UAC.
http://support.microsoft.com/kb/923947
whatever you're doing right now, you probably just need to "run as administrator" So if you're using computer managment, hold shift, right click computer managment and then select run as administrator. I'm pretty sure that'll do the trick.
Edit:
Check out this MS article, it's the sort of the same thing I'm saying. Whatever is doing the saving, needs to be running as the local administrator. Its eaither that, or you need to disable UAC.
http://support.microsoft.com/kb/923947
edited Mar 30 '12 at 1:21
answered Mar 29 '12 at 16:41
Eric C. SingerEric C. Singer
2,1941115
2,1941115
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
add a comment |
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
Thanks for your answer, I've already tried run as administrator, more than that i've also tried runas /user:domainuser with domain admin permissions but it still doesn't allow me to save the file in the INF folder.
– Itai Ganot
Mar 29 '12 at 18:11
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
see my edit above
– Eric C. Singer
Mar 30 '12 at 1:22
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f374908%2fis-it-possible-to-turn-off-windows-file-protection-in-windows-server-2008%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown