Questions tagged [restore-points]
12 questions
6
votes
3 answers
How to create a system restore point programmatically?
I'm looking for a way to create a system restore point with the current date and time by pressing a button. I've tried searching the web for a simple way to do this but I haven't found one yet.
I found this code snippet from:…

Boundinashes6
- 297
- 3
- 8
- 23
1
vote
1 answer
MySQL tools/tricks/scripts for rewinding DB changes
I'm trying to speed up a development task that I'm working on. I'm writing some code that is accessing and analyzing a large-ish MySQL database (about 5GB). I want to test my code as I go along. After making a code change, I need to try it out…

George
- 271
- 3
- 6
1
vote
2 answers
open restore point dialog c#
I am trying to open the restore point dialog from C# like
I'm using the following code:
Process.Start("SystemPropertiesProtection");
and from cmd:
public static string ExecuteCMD(IEnumerable commands,
bool…

Fath Bakri
- 161
- 1
- 12
1
vote
1 answer
C# create restore point netframework 3.5
Is it possible to create a restore point along with all required tasks (enable system protection, resize shadowstorage) from C# in a netframework 3.5 target?
I found some examples, but they all use System.Management.Automation to execute PowerShell…

apoklyps3
- 39
- 1
- 9
1
vote
0 answers
Visual Studio Emulator for android gets stuck on "Creating a system restore point"
I have tried severally installing visual studio emulator for android, but it gets stuck on "Creating system restore point". Similarly, it does not acquire past "API 19". I have even left it overnight. What should I do?
This is my screenshot:

Robert Karanja
- 11
- 3
0
votes
0 answers
Is it ok to delete some of the files in Azure Cycle Cloud back up shared folder (as folder size keep getting increased)?
I am trying to find if it ok to delete some of the files in shared folder of cycle_server/backups in azure cycle cloud. The data size is keep getting increased every day. It is already >1.7TB. If I delete some files, will I be able to perform point…

user1550623
- 1
- 2
0
votes
1 answer
SRSetRestorePoint does not create a restore point
I am trying to create a restore point on Windows using the C API function SRSetRestorePoint using the official example from here:
https://learn.microsoft.com/en-us/windows/win32/sr/using-system-restore#example-1-create-a-restore-point
It compiles…

Steve Wolligandt
- 71
- 2
- 7
0
votes
0 answers
Restore Point Informations Veeam PowerShell
I want to get informations about the restore points of a vm.
I have a list with the names of each vm in a CSV.
I want to know for each restore Point the name of the VM, which Media Pool it is, which Media Set and the backup set date.
I Could not…
user9488111
0
votes
1 answer
How to write an ODBC DataSet object into a database table using C#?
I am unit/auto-testing a large application which uses MSFT Sql Server, Oracle as well as Sybase as its back end. Maybe there are better ways to interface with a db, but ODBC library is what I have to use. Given these constraints, there is something…

Hamish Grubijan
- 10,562
- 23
- 99
- 147
0
votes
1 answer
How to enumerate system restore points using WinAPI (not WMI)?
Must work for WinXp - Vista - Windows 7

Yarik
- 1,172
- 2
- 9
- 17
0
votes
0 answers
Restore point via C# trouble
My task is to find all old restore points(not only system restore points,custom app restore points also included) and delete them. Also I must know their total size, and their description.
I have two solutions:
1) Find and delete at "C:\System…

user2003858
- 83
- 1
- 1
- 4
-2
votes
1 answer
Convert Stored Procedure to Simple T-Sql
I am new to SQL Server and currently learning it. I got following stored procedure which I don't understand.
-- declare a new TABLE variable
DECLARE @Products TABLE
(RowNumber INT,
ProductID INT,
Name VARCHAR(50),
Description VARCHAR(5000),
Price…

Idrees Khan
- 7,702
- 18
- 63
- 111