Skip to content

Commit a211ef9

Browse files
committed
Fix erroneous character escape
1 parent 94679cb commit a211ef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modifier/Optimizations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ .. CommandBuilder.WriteToFile(filename, @" ""Start"" = REG_DWORD 4"),
104104
{
105105
CommandAppender oobe = new(Document, NamespaceManager, CommandConfig.Oobe);
106106
oobe.Append(
107-
CommandBuilder.PowerShellCommand("Disable-ComputerRestore -Drive 'C:\';")
107+
CommandBuilder.PowerShellCommand(@"Disable-ComputerRestore -Drive 'C:\';")
108108
);
109109
}
110110

0 commit comments

Comments
 (0)