If it is a mapped network drive, it is best to use a UNC path instead of a mapped path. Also, when using paths under windows, try using the string modifier rif you are not using os.path.join.
import os
print os.getcwd()
os.chdir(r'\\server\path')
print os.getcwd()
source
share