Skip to content

Commit ea76ed6

Browse files
dhoehnaTimMangan
andauthored
Develop (#139)
* Moving breakout code to closer to CreateProcess call (#129) * Changing sing location for Psfmonitor * Adding output for PsfMonitor to PsfMonitor directory * Moving PsfMonitor stuff to it's own folder * Adding new files ot nuspec * Changing sing location for Psfmonitor * Adding output for PsfMonitor to PsfMonitor directory * Moving PsfMonitor stuff to it's own folder * Fixing issues * Using correct WIL macro * Moving code so atrribute list is in scopr to CreateProcess Co-authored-by: Darren Hoehna <dahoehna@microsoft.com> * Full PrivateProfile support (#124) * Complete PrivateProfile intercepts for FRF * Full PrivateProfile support * Full PrivateProfile support * Added PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * Various fixes for application compatibility (#132) * Complete PrivateProfile intercepts for FRF * Full PrivateProfile support * Full PrivateProfile support * Added PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * Replacement Post350 (#137) * Complete PrivateProfile intercepts for FRF * Full PrivateProfile support * Full PrivateProfile support * Added PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * PrivateProfile Tests * Changes for script flexibility: Can be in any folder inside or outside package, may use quotation marks, may use new pseudovariables to reference the package root or user redirection area. * Updates to documentation on scripting. * Redo of Post350 Changes * Update for naming conventions * Added optional executionpolicy options to script configs. * Correction to scripting Bypass * Scripting documentation for ExecutionPolicy * Fix issue with sending files to StartingScriptWrapper. * Put wait back in for Shell Launch * Requested cleanups to PR137 * Document UrlDecode method. * Cleanup StripFileColonSlash * wrong merge fix for calling StartProcess Co-authored-by: Darren Hoehna <dhoehna@yahoo.com> Co-authored-by: Darren Hoehna <dahoehna@microsoft.com> * Target and Script pseudo-variables and cleaup of PR137 manual merge issues. (#138) * Making sure breakout does not occur with PS scripts Co-authored-by: Darren Hoehna <dahoehna@microsoft.com> Co-authored-by: Tim Mangan (MVP) <TIm@tmurgent.onmicrosoft.com>
1 parent 3da1aef commit ea76ed6

53 files changed

Lines changed: 3488 additions & 1210 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

PsfLauncher/Logger.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ void Log(const char fmt[], ...) noexcept
1515

1616
if (count > str.size())
1717
{
18-
count = 1024; // vswprintf actually returns a negative number, let's just go with something big enough for our long strings; it is resized shortly.
19-
str.resize(count);
18+
str.resize(count);
2019

2120
va_list args2;
2221
va_start(args2, fmt);

0 commit comments

Comments
 (0)