Fix: The requested operation cannot be completed because the Terminal connection is currently busy processing a connect operation

Fixing The requested operation cannot be completed because the Terminal connection is currently busy processing a connect operation While you attempt to logon to Citrix sessions, you may receive below error message: —————————— [Window Title]   [Message] The requested operation cannot be completed because the Terminal connection is currently busy processing a connect, disconnect, reset, or delete operation. —————————— BUTTONS: OK ——————————   Symptoms: User unable to login via Citrix and/or terminal services RDP There may not be any visible processes running for the reported user   Fix: Close any of the Winlogon and/or all processes for the username who […]

Read more

Executing Commands from PowerShell script

Executing Commands from PowerShell Script PS interface to run system internal or external commands is supported via invoke-* cmdlets as listed below: PS C:> get-command Invoke-* | ft name Name Invoke-Command Invoke-Expression Invoke-History Invoke-Item Invoke-WmiMethod Invoke-WSManAction PS C:> Executing Command on Local Machine: $executable = ‘c:WindowsSystem32sc.exe’ $parameters = ‘qc’ $arguments  = ‘WinRM’ $command    = “$executable $parameters $arguments” Invoke-Expression $command Execution Output: PS C:> $executable = ‘c:WindowsSystem32sc.exe’ PS C:> $parameters = ‘qc’ PS C:> $arguments  = ‘WinRM’ PS C:> $command    = “$executable $parameters $arguments” PS C:> Invoke-Expression $command [SC] QueryServiceConfig SUCCESS SERVICE_NAME: WinRM TYPE               : 20  WIN32_SHARE_PROCESS START_TYPE         : 3   DEMAND_START ERROR_CONTROL      : […]

Read more

WinDiff usage

Usage:     windiff [options] path1 [path2] Options: -D    Compare one directory only. -F[flags] savefile    Save composite file to ‘savefile’.  The ‘flags’ may consist of one or more of I (identical), L (left), R (right), F (moved leFt), G (moved riGht), S (Similar left), A (similiAr right), X (exit after saving list). (e.g. -FLF saves list of Left or moved-leFt lines). -I file    Reads list of files to compare, from the specified input file.  Each line can contain one or two filenames, space delimited (with quoting, if filenames contain spaces).  Use "-" as the filename to read from stdin.  If a […]

Read more