0
votes
PowerShell script packaging and WinNT execution?
A easy step would be to create a .NET exe which embedded the script.
This would, of course, require PSH (and any non-standard snapins) installed when executed.
To remove those depen …
0
votes
What are known/documented/undocmented methods of the process start monitoring?
For monitoring you can use WMI events.
There is no[1] method to decide whether to allow the start or not. If you are on Pro/Biz/Ent/Ultimate editions group policy can be used to …
1
vote
Retrieve a complete processes list using C#
There are no hidden processes on Windows. Only processes you do not have (security) rights to see.
A process running as an administrator (in Vista/Win7/Win2k8 would need to be elevated) wil …
2
votes
How would you programmatically test a file for viruses ?
Platform?
Most Windows anti-virus provide shell integration (right click on a file in explorer to scan that file), which will either mean running an executable, DDE or COM. All of which pro …
3
votes
Standard sizes for Windows splash screens
Purely based on experience: No.
Not even from MS applications, e.g. Office and Visual Studio have different sizes (and the VS one grows as more components are added).
…
1
vote
CMD Full Screen Visual Studio
Open a command prompt, from its system menu (click on icon at top left) select default and ensure full screen is not selected on the options tab.
…
0
votes
Is it an easy task for External Hard Drive to set the permissions
It all depends on the format (filesystem type) and machines to which it will be connected. Too many combinations to cover all possibilities, but the usual answer is to format with FAT, which does n …
0
votes
1
vote
Redirecting output to multiple files and to stdout simultaneously in win XP command line
PowerShell has tee-object (standard alias tee) if you are using a decent shell.
…
2
votes
How do you check if a user has access rights for a file with the windows api
GetEffectiveRightsFromAcl are the same for all user/file combinations that I tested ($001200A9).
That all depends on the ACL, e.g. if Everyone is granted full c …
0
votes
COM method call returns Catastrophic Failure when BSTR is passed
A return of E_UNEXPECTED does not directly imply anything in general.
More COM runtime errors are more specific (e.g. loss of DOCM connection), so likely it is the COM component itself that …
0
votes
Best way to clone IIS settings to new server?
What version of IIS? (This will impact the extract steps.)
You can export settings from IIS manager and import.
…
6
votes
Programatically using CMD in C
Use CreateProcess, redirecting the output.
If the calling application is not a windows application there is no issue with a console window (because a console programming will, by default, i …
0
votes
Initialize Critical Section only once for a process
You can initialize a global critical section in DllMain for DLL_PROCESS_ATTACH (and clean up for DLL_PROCESS_DETACH).
…
0
votes
Avoid Re-initialization of Critical Section
Now a third party application is using / loading the dll more than once
Windows does not reload the same DLL multiple times. Where same means same pat …
