Deleting shadow copies on Windows XPPrevent Windows XP from deleting Volume Shadow Copy created by Windows...

How to acknowledge an embarrassing job interview, now that I work directly with the interviewer?

How to count occurrences of Friday 13th

When should a commit not be version tagged?

Did Amazon pay $0 in taxes last year?

Can you use a beast's innate abilities while polymorphed?

Is there any relevance to Thor getting his hair cut other than comedic value?

Is there a frame of reference in which I was born before I was conceived?

What are these green text/line displays shown during the livestream of Crew Dragon's approach to dock with the ISS?

Does music exist in Panem? And if so, what kinds of music?

CBP Reminds Travelers to Allow 72 Hours for ESTA. Why?

How to approximate rolls for potions of healing using only d6's?

Linear regression when Y is bounded and discrete

Is the set of paths between any two points moving only in units on the plane countable or uncountable?

A "strange" unit radio astronomy

Is divide-by-zero a security vulnerability?

Where is the fallacy here?

Multiplication via squaring and addition

How can atoms be electrically neutral when there is a difference in the positions of the charges?

How do I construct an nxn matrix?

Why do members of Congress in committee hearings ask witnesses the same question multiple times?

Must a tritone substitution use a dominant seventh chord?

The change directory (cd) command is not working with a USB drive

What to do when being responsible for data protection in your lab, yet advice is ignored?

How to avoid being sexist when trying to employ someone to function in a very sexist environment?



Deleting shadow copies on Windows XP


Prevent Windows XP from deleting Volume Shadow Copy created by Windows 7How to Turn Off Shadow Copies for Specific Folders/FilesDoes ntfs-3g keep shadow copies up to date?Programmatically create a shadow copy on Win XPHow should I restore Windows 7 using shadow copies?Shadow copy in XP?How do I enable Volume Shadow Copies on a mounted VHD on Windows 8Windows 10 system image failsVolume Shadow Copy Service - Security Permission ErrorShadow Copy With Storage Spaces?













2















I have a command-and-control PC that runs a specific Legacy Software. The software is black-box and cannot be modified or changed in behavior. To have "live" insight, I've scheduled a job such that ShadowSpawn makes a shadow copy of software's .log directory, which gets copied with Robocopy over network to another PC where it then gets parsed by python script and updates "live" on web. Time resolution is a copy every 15min. This is set so because the software does not allow read-only access to logs while running. So this has worked for few months and now ShadowSpawn fails with error code 0x80042317 which translates to "VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED". Typical resolution of this problem is usage of Microsoft's VSSADMIN with DELETE command.



The problem is that the PC has VSSADMIN version 1.0 that can only list shadow copies but not delete them. It seems that DELETE command was added with version 1.1 with service pack but my boss will not allow update of OS.



My question is how to delete ALL shadow copies with, let say, every reboot on a bare bones Windows XP? Something like diskshadow or vssadmin 1.1 would be perfect, but like I said - any update of OS is out of question.



Its important to have in mind that neither OS nor the Software depend on shadow copies for backup or functioning so any-and-all snapshots can be deleted freely at reboot, ideally with scheduled job, invisible to the PC operator.



Any ideas?










share|improve this question







New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

    – harrymc
    9 hours ago








  • 1





    Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

    – sxg
    7 hours ago
















2















I have a command-and-control PC that runs a specific Legacy Software. The software is black-box and cannot be modified or changed in behavior. To have "live" insight, I've scheduled a job such that ShadowSpawn makes a shadow copy of software's .log directory, which gets copied with Robocopy over network to another PC where it then gets parsed by python script and updates "live" on web. Time resolution is a copy every 15min. This is set so because the software does not allow read-only access to logs while running. So this has worked for few months and now ShadowSpawn fails with error code 0x80042317 which translates to "VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED". Typical resolution of this problem is usage of Microsoft's VSSADMIN with DELETE command.



The problem is that the PC has VSSADMIN version 1.0 that can only list shadow copies but not delete them. It seems that DELETE command was added with version 1.1 with service pack but my boss will not allow update of OS.



My question is how to delete ALL shadow copies with, let say, every reboot on a bare bones Windows XP? Something like diskshadow or vssadmin 1.1 would be perfect, but like I said - any update of OS is out of question.



Its important to have in mind that neither OS nor the Software depend on shadow copies for backup or functioning so any-and-all snapshots can be deleted freely at reboot, ideally with scheduled job, invisible to the PC operator.



Any ideas?










share|improve this question







New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

    – harrymc
    9 hours ago








  • 1





    Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

    – sxg
    7 hours ago














2












2








2








I have a command-and-control PC that runs a specific Legacy Software. The software is black-box and cannot be modified or changed in behavior. To have "live" insight, I've scheduled a job such that ShadowSpawn makes a shadow copy of software's .log directory, which gets copied with Robocopy over network to another PC where it then gets parsed by python script and updates "live" on web. Time resolution is a copy every 15min. This is set so because the software does not allow read-only access to logs while running. So this has worked for few months and now ShadowSpawn fails with error code 0x80042317 which translates to "VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED". Typical resolution of this problem is usage of Microsoft's VSSADMIN with DELETE command.



The problem is that the PC has VSSADMIN version 1.0 that can only list shadow copies but not delete them. It seems that DELETE command was added with version 1.1 with service pack but my boss will not allow update of OS.



My question is how to delete ALL shadow copies with, let say, every reboot on a bare bones Windows XP? Something like diskshadow or vssadmin 1.1 would be perfect, but like I said - any update of OS is out of question.



Its important to have in mind that neither OS nor the Software depend on shadow copies for backup or functioning so any-and-all snapshots can be deleted freely at reboot, ideally with scheduled job, invisible to the PC operator.



Any ideas?










share|improve this question







New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I have a command-and-control PC that runs a specific Legacy Software. The software is black-box and cannot be modified or changed in behavior. To have "live" insight, I've scheduled a job such that ShadowSpawn makes a shadow copy of software's .log directory, which gets copied with Robocopy over network to another PC where it then gets parsed by python script and updates "live" on web. Time resolution is a copy every 15min. This is set so because the software does not allow read-only access to logs while running. So this has worked for few months and now ShadowSpawn fails with error code 0x80042317 which translates to "VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED". Typical resolution of this problem is usage of Microsoft's VSSADMIN with DELETE command.



The problem is that the PC has VSSADMIN version 1.0 that can only list shadow copies but not delete them. It seems that DELETE command was added with version 1.1 with service pack but my boss will not allow update of OS.



My question is how to delete ALL shadow copies with, let say, every reboot on a bare bones Windows XP? Something like diskshadow or vssadmin 1.1 would be perfect, but like I said - any update of OS is out of question.



Its important to have in mind that neither OS nor the Software depend on shadow copies for backup or functioning so any-and-all snapshots can be deleted freely at reboot, ideally with scheduled job, invisible to the PC operator.



Any ideas?







windows-xp volume-shadow-copy






share|improve this question







New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 10 hours ago









sxgsxg

1112




1112




New contributor




sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






sxg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

    – harrymc
    9 hours ago








  • 1





    Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

    – sxg
    7 hours ago














  • 1





    ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

    – harrymc
    9 hours ago








  • 1





    Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

    – sxg
    7 hours ago








1




1





ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

– harrymc
9 hours ago







ShadowSpawn is supposed to clean up after itself when the command is finished. I have looked at the code, and indeed it does that. Check if you don't have multiple copies of ShadowSpawn executing a command that never terminates.

– harrymc
9 hours ago






1




1





Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

– sxg
7 hours ago





Now, that's interesting! Still, I need to clear existing orphaned snapshots, but this reveals a way forward - make sure that shadowspawn is run in single instance.

– sxg
7 hours ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});


}
});






sxg is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1411224%2fdeleting-shadow-copies-on-windows-xp%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








sxg is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















sxg is a new contributor. Be nice, and check out our Code of Conduct.













sxg is a new contributor. Be nice, and check out our Code of Conduct.












sxg is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Super User!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1411224%2fdeleting-shadow-copies-on-windows-xp%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...