Recent content by computationalprince

  1. C

    Is there even such a thing as...

    ...redirecting HDD writes to RAM for a running win32 program? Say Firefox needs to write data to a file named "Cookies" located somewhere on my HDD because I accessed a site that wants me to accept cookies, could I somehow redirect that data to-be-written to a file located in RAM?
  2. C

    Why does System Restore delete shortcuts?

    A while ago I reverted to a restore point and after successful restoration and reboot I noticed that some of my personally created shortcuts have simply disappeared. I could have probably retreived them by pulling them out from a restore point located in some special folder at C:\ if they were...
  3. C

    Firewall with ability to block connections in real-time?

    Looking for a Windows 7/8/10 software that has the possibility to record established and attempts to establish connections with IP adresses, drop connections and restrict a certain program or the entire OS to connect to specific IP adresses in real-time. In other words, a program that blacklists...
  4. C

    how can l restrict internet access to NT AUTHORITY\System aka Local System account?

    it isn't connecting to anything except to microsoft's servers, so how is that the entire world? l dont understand your behaviour, l simply asked a question so if you can't answer it, move along. Preventing the OS from connecting to the outside world is actually the smartest idea in the human...
  5. C

    how can l restrict internet access to NT AUTHORITY\System aka Local System account?

    There`s a process called System that has the ability of sending and receiving UDP/TCP packets. It is running under NT AUTHORITY\SYSTEM user. The process has no path to .exe or anything like that, so l assume the only way of making it my slave instead of me being its slave, is to restrict the...
  6. C

    Microsoft's malicious activity

    *redacted* So, tonight l got a BAD_POOL_CALLER BSOD + automatic reboot and a shockingly suprising, never before seen greeting on final boot up after that BSOD, with a UAC-like/administrator-like behaving pop-up window, called "Windows 10 Upgrade Assistant"(Windows10UpgraderApp.exe) Trust me...
  7. C

    Can anyone help me undo these registry changes??

    what is the build of your Windows?
  8. C

    Setting programs with custom affinity

    cmd.exe /c start "Program Name" /affinity # "Full path of application file"​ example: (For only on CPU 0) cmd.exe /c start "Process Monitor" /affinity 1 "E:\Programs\Process Monitor 3.05\Procmon.exe" (For on CPU 0 and CPU 3) cmd.exe /c start "Process Monitor" /affinity 9 "E:\Programs\Process...