Skip to content

Commit

Permalink
Fix erroneous character escape
Browse files Browse the repository at this point in the history
  • Loading branch information
cschneegans committed Apr 1, 2024
1 parent 94679cb commit a211ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modifier/Optimizations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ .. CommandBuilder.WriteToFile(filename, @" ""Start"" = REG_DWORD 4"),
{
CommandAppender oobe = new(Document, NamespaceManager, CommandConfig.Oobe);
oobe.Append(
CommandBuilder.PowerShellCommand("Disable-ComputerRestore -Drive 'C:\';")
CommandBuilder.PowerShellCommand(@"Disable-ComputerRestore -Drive 'C:\';")
);
}

Expand Down

0 comments on commit a211ef9

Please sign in to comment.