Category Archives: Windows

windows

Red Alert 3 – Black screen on startup

Posted on .

If you’ve just installed Red Alert 3 on Windows 7 then you may be presented with a simple black screen on startup, that just freezes there.

  1. Navigate to the Data folder, ie. C:/Program Files/Electronic Arts/Red Alert 3/Data
  2. Rename the Movies folder to “Movies.renamed”
  3. Start up the game
  4. Set your resolution to the same as your desktop
  5. Apply the settings and quit the game
  6. Rename the Movies directory back to “Movies”
  7. Start up the game and it should work

YMMV.

Disable NTFS last access time

Posted on .

Small increase in performance by having NTFS not note down the time of each file access.

Download
  ntfs-disable-last-access-time.reg (150 bytes, 2,452 hits)

Disable Superweapons in Red Alert 3

Posted on .

Previous versions of Command & Conquer™ had the ability to disable super weapons, but in Red alert 3 this option is abscent. After much googling for a solution, I spent some time creating my own mod that simply disabled the superweapons.

I like to play turtle vs. the Ai in skirmish, and develop intuitive ways to crush my opponent without having to battle vs. super weapons every 5 minutes.

Created based on SDKv3 and RA3v1.12, it disables the ability to build the weapons for both player and AI.

I created two different mods that disable one or both types of superweapons.

Update: Works in Uprising according to this comment.

Continue reading

Enable or Disable a user account from command prompt

Posted on .

In a domain environment you can enforce logon times for individual users, I wanted to emulate this behaviour in a workgroup.

To do this first I learnt the following commands in command prompt [cmd] (run as Administrator):

To disable: net user Bob /active:no
To enable: net user Bob /active:yes

I then created 2 tasks in Task Scheduler to disable and enable at the appropriate times.

When creating the tasks its important to note:

  • Run with highest privileges
  • Run even when user not logged on
  • The path to the “net” command is “C:\Windows\System32\net.exe”
  • The rest of the command line goes in the arguments box

This helped to discourage my son from waking up at 4am to play Plants vs Zombies™ on the computer.