Wise Package Studio 7 SP3 on Windows 7 X64-bit crash dump analysis

0:000> !analyze -v ******************************************************************************* * * * Exception Analysis * * * ******************************************************************************* GetPageUrlData failed, server returned HTTP status 404 URL requested: http://watson.microsoft.com/StageOne/WfWI_exe/7_3_0_385/47f4f32d/unknown/0_0_0_0/bbbbbbb4/80000003/00000000.htm?Retriage=1 FAULTING_IP: +e483e20 00000000`00000000 ?? ??? EXCEPTION_RECORD: ffffffffffffffff — (.exr 0xffffffffffffffff) ExceptionAddress: 0000000000000000 ExceptionCode: 80000003 (Break instruction exception) ExceptionFlags: 00000000 NumberParameters: 0 FAULTING_THREAD: 0000000000000fd0 PROCESS_NAME: WfWI.exe ERROR_CODE: (NTSTATUS) 0x80000003 – {EXCEPTION} Breakpoint A breakpoint has been reached. EXCEPTION_CODE: (HRESULT) 0x80000003 (2147483651) – One or more arguments are invalid MOD_LIST: <ANALYSIS/> NTGLOBALFLAG: 0 APPLICATION_VERIFIER_FLAGS: 0 MANAGED_STACK: !dumpstack -EE No export dumpstack found ADDITIONAL_DEBUG_TEXT: Followup set based on attribute [Is_ChosenCrashFollowupThread] from Frame:[0] on thread:[PSEUDO_THREAD] LAST_CONTROL_TRANSFER: from 00000000750e282c to 00000000750e2dd9 BUGCHECK_STR: […]

Read more

VBscript to Send Key Strokes (Auto Response) to the Windows Applications

Here is a very simple and quick VBscript that can automated press OK on your Windows Run prompt. If you have any of the command types in your Run box, that gets executed simply by running this script. set shell = createobject("wscript.shell") wscript.sleep 200 success = shell.appactivate("Run") if success then shell.sendkeys "{tab}" wscript.sleep 400 shell.sendkeys "{enter}"   Steps: Open the Run, (use Windows key + R) Type cmd in the Run box Open the Explorer where you have the above code saved as .vbs script Double click on the .vbs script file for it to run That’s it will see […]

Read more

PS: Using GetEnvironmentVariable to Manage Environment Variables

Here’s a quick tip on working with Windows PowerShell. These are published every week for as long as we can come up with new tips. If you have a tip you’d like us to share or a question about how to do something, let us know. Find more tips in the Windows PowerShell Tip of the Week archive. Creating and Modifying Environment Variables Most people know how easy it is to use Windows PowerShell to retrieve information about environment variables. Want to see all your environment variables and their values? This command should do the trick: Copy Get-ChildItem Env: In […]

Read more