Sim City 4 on Windows 7 64bit
Follow these steps:

1) Install Sim City 4. When the game starts on completion, exit.

2) (Optional) Install Sim City 4 Rush Hour. When the game starts on completion, again exit.

3) Install the Sim City 4 Rush Hour Update from this URL: http://simcity.ea.com/update/index_update.php

4) You may use a custom resolution by adding this to the shortcut:
"CProgram Files (x86)MaxisSimCity 4AppsSimCity 4.exe" -CustomResolution:enabled -r1920x1080x32
Adjust as needed.

5) Right click the shortcut again, and go to compatibility Check Run As Administrator, Disable Visual Themes, Run in Compatibility Mode for XP Service Pack 2

6) CLOSE ALL OTHER PROGRAMS NOTHING ELSE CAN BE RUNNING ON THE TASK BAR

7) Run the program. It may drop you back to the desktop at this point, or if it is still going hit CTRL-ALT-DEL go to TASK MANAGER then Processes. Find the Sim City Process. Right Click the process and select "Set Affinity..." Uncheck all but one processor, so that one processor only can run the Sim City process.

8) Click back into the game on the taskbar. During the loading sequence ("EA, Challenge Everything") it may continue to drop you to the desktop... don't worry... once the game actually starts (Region View) you'll be able to play just fine!


  1. 이전 댓글 더보기
  1. 이전 댓글 더보기
>>> import socket
>>> def netcat(hostname, port, content):
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect((hostname, port))
    s.sendall(content)
    s.shutdown(socket.SHUT_WR)
    while 1:
        data = s.recv(1024)
        if data == "":
            break
        print "Received:", repr(data)
    print "Connection closed."
    s.close()

>>> netcat("hostname", port, "\xAA\xBB\xCC\xDD")
Received: ....

 

PHP 및 MediaWiki API를 사용하여 Wikipedia 정보에 접속하기

 




http://www.ibm.com/developerworks/kr/library/x-phpwikipedia/index.html
  1. 이전 댓글 더보기

+ Recent posts