Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/02/2011, 13:56
Avatar de Aquaventus
Aquaventus
 
Fecha de Ingreso: junio-2010
Ubicación: Lima-Peru , En el alba de la naturaleza
Mensajes: 2.105
Antigüedad: 14 años, 4 meses
Puntos: 267
Respuesta: Guardar archivos en System32

Te falto colocarle el "@" :
Código vb.net:
Ver original
  1. If LogonUser("arellanomarketing", "ARELLANO", "arellano", LogonType.LOGON32_LOGON_NEW_CREDENTIALS, LogonProvider.LOGON32_PROVIDER_DEFAULT, admin_token) <> 0 Then
  2. wid_admin = New WindowsIdentity(admin_token, "NTLM", WindowsAccountType.Normal, True)
  3. System.Threading.Thread.CurrentPrincipal = New WindowsPrincipal(wid_admin)
  4. wic = wid_admin.Impersonate()
  5. System.IO.File.Copy("C:\ABC\ABC.sql", "\\SERVER\ABC\abc.sql")
  6. System.IO.File.Copy("C:\ABC\ABC.sql",@"C:\Windows\System32\a.xml")
  7. Else
  8. MsgBox("NO ENTRO")
  9. End If

Yo lo eh probado y va bien. Saludos!
__________________
Internet es tener todo el conocimiento global a tu disposición.
Desarrollo de Software - Ejemplos .Net