[Solved] Application-Based Operating System…? [closed]

I don’t think you really want to build your own operating system. There’s already an operating system called ReactOS that’s pretty much what you’re looking to build. Just to reemphasize that creating an operating system isn’t easy (especially one that runs Windows applications), ReactOS development started in 1998 and they’re still in alpha stage. If … Read more

[Solved] Share Excel.Application executable among multiple WSF processes?

Usage of GetObject() is documented in this old KB article. Error handling is required to get the first instance created. Like this: Dim excel On Error Resume Next Set excel = GetObject(, “Excel.Application”) If Err.number = 429 Then Set excel = CreateObject(“Excel.Application”) End If If Err.number <> 0 Then WScript.Echo “Could not start Excel: ” … Read more

[Solved] How to get model and serial number of monitor? [closed]

I found some info in link below.solution Using wmi classes we can take info from our monitors, then for each monitor takes values from fields and write it to file. $Monitors = Get-WmiObject WmiMonitorID -Namespace root\wmi $LogFile = “d:\monitors.txt” “Manufacturer,Name,Serial” | Out-File $LogFile ForEach ($Monitor in $Monitors) { $Manufacturer = ($Monitor.ManufacturerName|where {$_ -ne 0}|ForEach{[char]$_}) -join … Read more

[Solved] When I run my autoclicker I can’t stop it

Swing is single threaded – calling any long running task on that thread will lock that thread up (the EDT) and prevent any painting, events, etc… from occurring. One of the ActionListener implementations creates an infinite loop: while(chckbxAutoclicker.isSelected()){ The above will never evaluate to false, because it is evaluating on the EDT, and events (such … Read more

[Solved] Is it really impossible to develop Windows Store apps on Windows 7? [closed]

It is not impossible to install the Visual Studio on the pc, although that would require you take apart the setup and do things manually, however even if you do the install will be broken and would crash more often than not, so much that it becomes pretty much unusable. So do as the other … Read more

[Solved] Hide all traces of a program that is running [closed]

I am no expert but I think most techniques that deals with process hiding uses CreateRemoteThread.http://msdn.microsoft.com/en-us/library/windows/desktop/ms682437(v=vs.85).aspx It is pretty tough to get right, but there are maaany blogs about it, eg:http://resources.infosecinstitute.com/using-createremotethread-for-dll-injection-on-windows/ This works by picking some victim process that is already running, like say svchost.exe and add your thread into this. Also while speaking of … Read more

[Solved] How to open regedit with C++ [duplicate]

Here is, what I needed. String GetFullHKEY (HKEY hKeyRoot) { if (HKEY_LOCAL_MACHINE == hKeyRoot) return _T(“HKEY_LOCAL_MACHINE\\”); if (HKEY_CLASSES_ROOT == hKeyRoot) return _T(“HKEY_CLASSES_ROOT\\”); if (HKEY_CURRENT_CONFIG == hKeyRoot) return _T(“HKEY_CURRENT_CONFIG\\”); if (HKEY_CURRENT_USER == hKeyRoot) return _T(“HKEY_CURRENT_USER\\”); if (HKEY_USERS == hKeyRoot) return _T(“HKEY_USERS\\”); } bool RegistryGoTo (HKEY hKeyRoot, const String &lpctPath, String lpctValue) { if (lpctPath.empty() || 0 … Read more

[Solved] How to make mobile apps for different OS [closed]

To make apps (mobile apps, I think you mean) for different OS’s(I think you mean the different OS’s on each phone),(assumption: that you’re coding it from scratch) you learn a programming language first, then proceed to learn how to make apps for a particular OS. Typically, you purchase a book (look online for good recommendations) … Read more