en esta ruta podras encontrar los archivos temporales adjuntos que se habren desde outlook en Windows 7
c:\Users\USUARIO\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.Outlook\
seguramente no podras ver la carpeta CONTENT.OUTLOOk
en la barra del explorador de archivos completala con \content.outlook y podrás entrar
En este blog podremos compartir y comentar varios de los problemas raros y comunes que se nos pueden presentar en el dia a dia cuando atendemos casos de soporte.. espero que encontres tu respuesta aquí.. si no lo solucionamos juntos.. dale..
miércoles, 19 de febrero de 2014
martes, 18 de febrero de 2014
SCRIPTS home page
On Error Resume Next
Const HKEY_CURRENT_USER = &H80000001
str_Equipo = "."
str_PaginaInicio = "http://www.willamulloa.com"
Set obj_Registro = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}\\" & str_Equipo & _
"\root\default:StdRegProv")
str_Clave= "Software\Microsoft\Internet Explorer\Main"
obj_Registro.SetStringValue HKEY_CURRENT_USER, str_Clave, _
"Start Page",str_PaginaInicio
str_Equipo = "."
str_PaginaInicio = "http://sypfbofcws04:85/intranet/WebPortal/"
Set obj_Registro = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}\\" & str_Equipo & _
"\root\default:StdRegProv")
str_Clave= "Software\Microsoft\Internet Explorer\Main"
obj_Registro.SetStringValue HKEY_CURRENT_USER, str_Clave, _
"Start Page",str_PaginaInicio
Const HKEY_CURRENT_USER = &H80000001
str_Equipo = "."
str_PaginaInicio = "http://www.willamulloa.com"
Set obj_Registro = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}\\" & str_Equipo & _
"\root\default:StdRegProv")
str_Clave= "Software\Microsoft\Internet Explorer\Main"
obj_Registro.SetStringValue HKEY_CURRENT_USER, str_Clave, _
"Start Page",str_PaginaInicio
str_Equipo = "."
str_PaginaInicio = "http://sypfbofcws04:85/intranet/WebPortal/"
Set obj_Registro = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}\\" & str_Equipo & _
"\root\default:StdRegProv")
str_Clave= "Software\Microsoft\Internet Explorer\Main"
obj_Registro.SetStringValue HKEY_CURRENT_USER, str_Clave, _
"Start Page",str_PaginaInicio
SCRIPTS: get hostname
Set WshNetwork = WScript.CreateObject("WScript.Network")
WScript.Echo "Nombre de equipo = " & WshNetwork.ComputerName
WScript.Echo "Nombre de equipo = " & WshNetwork.ComputerName
SCRIPTS: change proxy IE
dim strProxyServer
strProxyServer = "192.168.10.20:8080"
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000001", "REG_DWORD")
Call oWshShell.RegWrite(strRegPath & "ProxyOverride", "<local>", "REG_SZ")
Call oWshShell.RegWrite(strRegPath & "ProxyServer", strProxyServer, "REG_SZ")
Msgbox "Proxy Cambiado y habilitado " & VbCrLf & "Proxy server - " & strProxyServer
Set oWshShell = Nothing
SCRIPTS: Enable/Disable Proxy IE
>Disable Proxy / Deshabilitar proxy / Destiquear proxy
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000000", "REG_DWORD")
Msgbox "PROXY DESHABILITADO"
Set oWshShell = Nothing
>Enable Proxy / Habilitar proxy / Tiquear proxy
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000001", "REG_DWORD")
Msgbox "PROXY HABILITADO"
Set oWshShell = Nothing
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000000", "REG_DWORD")
Msgbox "PROXY DESHABILITADO"
Set oWshShell = Nothing
>Enable Proxy / Habilitar proxy / Tiquear proxy
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000001", "REG_DWORD")
Msgbox "PROXY HABILITADO"
Set oWshShell = Nothing
Scripts: Add network print
set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\printserver\nameprinter"
WshNetwork.SetDefaultPrinter "\\printserver\nameprinter"
WshNetwork.AddWindowsPrinterConnection "\\printserver\nameprinter"
WshNetwork.SetDefaultPrinter "\\printserver\nameprinter"
miércoles, 12 de febrero de 2014
SCRIPTS Serial Number
Obtener Serial Number de una PC o Notebook. Get serial number
Puedes utilizar el siguiente scripts que te funcionara para obtener el serial number local o de un host remoto.
Copia el siguiente scripts en un blog de notas y guárdalo con extencion .vbs
******************
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems = objWMIService.ExecQuery( _
"SELECT * FROM Win32_BaseBoard",,48)
For Each objItem in colItems
' Wscript.Echo "-----------------------------------"
' Wscript.Echo "Win32_BaseBoard instance"
' Wscript.Echo "-----------------------------------"
Wscript.Echo "SerialNumber: " & objItem.SerialNumber
Next
Puedes utilizar el siguiente scripts que te funcionara para obtener el serial number local o de un host remoto.
Copia el siguiente scripts en un blog de notas y guárdalo con extencion .vbs
******************
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems = objWMIService.ExecQuery( _
"SELECT * FROM Win32_BaseBoard",,48)
For Each objItem in colItems
' Wscript.Echo "-----------------------------------"
' Wscript.Echo "Win32_BaseBoard instance"
' Wscript.Echo "-----------------------------------"
Wscript.Echo "SerialNumber: " & objItem.SerialNumber
Next
martes, 11 de febrero de 2014
La siguiente organización rechazó tu mensaje: mx3.hotmail.com.
No se ha podido realizar la entrega a estos destinatarios o grupos:
Error al intentar entregar el mensaje a esta dirección de correo electrónico. Intente enviar de nuevo el mensaje. Si el problema continúa, póngase en contacto con el personal de soporte técnico.
La siguiente organización rechazó tu mensaje: mx3.hotmail.com.
POSIBLES SOLUCIONES
si recibes este rechazo a un correo puede ser por las siguientes causas:
- la direccion de correo esta mal escrita, revisala y voler a enviar el correo.
- o Tal ves el dominio de tu empresa esta generando spam y los servidores de hotmail lo colocan en sus listas negras. Si es esto, tienes que contactarte si o si con el soporte de hotmail y pedirle que liberen tu dominio de sus listas negras, este proceso tarda de 24 a 72 horas en que te lo solucionen.
lunes, 10 de febrero de 2014
Instalar Da Vinci Windows 7
No has podido instalar Da Vinci en Windows 7 u 8 para realizar tus facturas, pues bien realiza estos pasos.
1.-Instalar .Net Framework 1.1
2.- Luego instalar el .Net Framework 1.1 service pack1 (KB867460) (este es la clave para que puedas instalar el Davinci en Windows 7 u 8, la puedes descargar desde el sitio de MS)
AHora recien procede con los instaladores de Davinciformularios.exe
Reinicia el equipo y funcionará
1.-Instalar .Net Framework 1.1
2.- Luego instalar el .Net Framework 1.1 service pack1 (KB867460) (este es la clave para que puedas instalar el Davinci en Windows 7 u 8, la puedes descargar desde el sitio de MS)
AHora recien procede con los instaladores de Davinciformularios.exe
Reinicia el equipo y funcionará
lunes, 3 de febrero de 2014
Printing Error 0x4f56a0bd
The error is when it comes to adding a printer queue for a network printer. When
you see the window of the print queue, skip the error: "Function address
0x4F56A0BD caused a protection fault. (Exception code 0xc0000005) Some or all
property page (s) may not be displayed.
Then when trying to print a page from any application, it generates the error: "Test Page failed to print. Would you like to view the printer Troubleshooter for assistance? "
SOLUTION Reinstall Service Pack 2 for Windows XP. After rebooting the computer, remove the print queue and add it again.
Then when trying to print a page from any application, it generates the error: "Test Page failed to print. Would you like to view the printer Troubleshooter for assistance? "
SOLUTION Reinstall Service Pack 2 for Windows XP. After rebooting the computer, remove the print queue and add it again.
We are sorry for the inconvenience. AppName: hpltrpl9.exe AppVer: 0.2.0.0 ModName: hpltdrv7.dll ModVer: 0.3.00 Offset: 00024779 AppName: hpltrpl9.exe
Printer driver for HP DesignJet printers in Windows NT has encountered a problem
and needs to close. We are sorry for the inconvenience. We are sorry for the
inconvenience. AppName: hpltrpl9.exe AppVer: 0.2.0.0 ModName: hpltdrv7.dll
ModVer: 0.3.00 Offset: 00024779 AppName: hpltrpl9.exe AppVer: 0.2.0.0 ModName:
hpltdrv7.dll ModVer: 0.3.00 Offset: 00024779
This problem happened to me when trying to print to a plotter, autocad file, was in an extremely long road, to copy the file on drive C:, was achieved without any problem printing
Possible Solution
Reduce the path depth of the folder(s) containing the drawings, and/or the file names, by either moving the files closer to the root of the drive or mapping the folder containing the drawings to an available drive letter. Reduce the depth of the folder path (s) containing the drawings, and / or the file names, either by moving the files closer to the root of the drive mapping or the folder containing the drawings to an available drive letter.
REF: REF:
http://usa.autodesk.com/adsk/servlet/ps/item?siteID=123112&id=7293891&linkID=9240617
This problem happened to me when trying to print to a plotter, autocad file, was in an extremely long road, to copy the file on drive C:, was achieved without any problem printing
Possible Solution
Reduce the path depth of the folder(s) containing the drawings, and/or the file names, by either moving the files closer to the root of the drive or mapping the folder containing the drawings to an available drive letter. Reduce the depth of the folder path (s) containing the drawings, and / or the file names, either by moving the files closer to the root of the drive mapping or the folder containing the drawings to an available drive letter.
REF: REF:
http://usa.autodesk.com/adsk/servlet/ps/item?siteID=123112&id=7293891&linkID=9240617
User.Identity.Name returns empty string
When we use the instruction User.Identity.Name for
our aspx page we return the user name to log on or get up the site, and returns
an empty string, this is because anonymous access is enabled virtual directory.
SOLUTION
Sign in IIS, then select the virtual directory of
the project, right click, properties, directory security, click the Edit button,
the anonymous access box, they should NOT be selected.
Try again and serve the
instruction
poner nombre de formulario inphopath al guardarlo
En este blog se encuentra la solucion al problema. Muy
bueno...
http://casosresueltos.blogspot.com/2008/11/guardar-formulario-infopath-en-una.html
http://casosresueltos.blogspot.com/2008/11/guardar-formulario-infopath-en-una.html
Listing autocomplement Internet Explorer address after deleting
If you changed a user's PC and wants you to retrieve your list of Internet
addresses to which it has entered
then you can recover your PC before following these steps:
1 .- That the users log on with your network account.
2 .- Then open the Windows Registry, and go to the following address: HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ TypedURLs
In this registration list that is displaying the explorer.
3 .- Export the list, go to menu File / Export, save in any way with any name. This will create a. Reg
4 .- This. Reg file, get it at the new computer and running. Obviously logged with the user's session.
5 .- Open the explorer and the list will be intact.
then you can recover your PC before following these steps:
1 .- That the users log on with your network account.
2 .- Then open the Windows Registry, and go to the following address: HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ TypedURLs
In this registration list that is displaying the explorer.
3 .- Export the list, go to menu File / Export, save in any way with any name. This will create a. Reg
4 .- This. Reg file, get it at the new computer and running. Obviously logged with the user's session.
5 .- Open the explorer and the list will be intact.
SHOW NAME OF HOSTNAME ON THE DESKTOP PC WINDOWS XP
Many times there is a need to show the hostname on the Windows desktop. In this
example, we will show the hostname on the icon named My Computer or My Computer.
Go to the Windows registry (Regedit) and find this entry: [HKEY_CLASSES_ROOT \ CLSID \ (20D04FE0-3AEA-1069-A2D8-08002B30309D)]
Create a value of type REG_EXPAND_SZ, which is called LocalizedString, then the string value enter: My Computer% COMPUTERNAME% (If you want to show the user name, use% USERNAME%)
If LocalizeString value exists, rename or delete. Make a refresh on the desktop and appear on behalf of hostname.
Go to the Windows registry (Regedit) and find this entry: [HKEY_CLASSES_ROOT \ CLSID \ (20D04FE0-3AEA-1069-A2D8-08002B30309D)]
Create a value of type REG_EXPAND_SZ, which is called LocalizedString, then the string value enter: My Computer% COMPUTERNAME% (If you want to show the user name, use% USERNAME%)
If LocalizeString value exists, rename or delete. Make a refresh on the desktop and appear on behalf of hostname.
Script - Rename organization name
Option Explicit
Set ws = WScript.CreateObject("WScript.Shell")
Dim ws, p1
p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\"
ws.RegWrite p1 & "RegisteredOwner", "PONER NOMBRE"
ws.RegWrite p1 & "RegisteredOrganization", "PONER NOMBRE"
Set ws = WScript.CreateObject("WScript.Shell")
Dim ws, p1
p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\"
ws.RegWrite p1 & "RegisteredOwner", "PONER NOMBRE"
ws.RegWrite p1 & "RegisteredOrganization", "PONER NOMBRE"
distribuir archivo en la red
XCOPY \\server\carpeta\documento.lnk c:\docume~1\alluse~1\desktop /c /q
/y
Hay que agregar a la línea de comando un @file con la ruta de un archivo de texto con los hostnames…..
Hay que agregar a la línea de comando un @file con la ruta de un archivo de texto con los hostnames…..
Comandos Panel de Control
Llamar a los componentes del panel de control mediante
inicio/ejecutar
access.cpl: comando para acceder a la opciones de accesibilidad.
accwiz: comando para usar el asistente para accesibilidad.
hdwwiz.cpl: comando para usar el asistente de agregar hardware.
appwiz.cpl: comando para agregar o quitar programas.
control admintools: comando para usar las herramientas administrativas.
wuaucpl.cpl: comando para utilizar actualizaciones automaticas.
fsquirt: comando para usar el asistente de transferencia con bluetooth.
cal: comando para utilizar la calculadora de Windows.
certmgr.msc: comando para utilizar certificados.
charmap: comando para ver el mapa de caracteres.
chkdsk: comando para utilidades de disco.
cmd: comando para utilizar el promp de windows.
clpbrd: comando para ver el visor de portafolios.
dcomcnfg: comando para ver el servicio de componentes.
compmgmt.msc: comando para ver la administración de equipos.
control: comando para abrir el panel de control.
timedate.cpl: comando para cambiar la hora del sistema, debemos tener permiso para ejecutarlo.ddeshare: comando para ejecutar recursos DDE en el equipo.
devmgmt.msc: comando para ejecutar el administrador de dispositivos.
dxdiag: comando para ejecutar la herramienta de diagnóstico de DirecX.
cleanmgr: comando para usar la herramienta de liberar algún dispositivo del equipo.
dfrg.msc: comando para desfragmentar discos.
diskmgmt.msc: comando para ejecutar el administrador de discos.
diskpart: comando para ejectuar el menu de particiones.
control desktop: comando para ejecutar la ventana de propiedades de pantalla.
desk.cpl: igual que el control desktop, muestra la ventana de propiedades de pantalla.
drwtsn32: comando para ejecutar el Dr. watson para windows.
verifier: comando para ejecutar el administrador del comprobador de controlador
eventvwr.msc: comando para ver el visor de sucesos local.
migwiz: comando para ejecutar el asistente de transferencia de archivo y configuraciones.
sigverif: comando para ejecutar el comprobador de la firma de un archivo.
firefox: comando para ejecutar el navegador firefox.
control folders: comando para ejecutar las opciones de carpetas.
control fonts: comando para abrir la carpeta de fuentes.
fonts: comando para abrir windows\font.
freecell: comando para abrir el juego de carta blanca.
joy.cpl: comando para abrir los controles de dispositivos de juegos.
gpedit.msc: comando para abrir la directiva de grupo.
mshearts: comando para abrir el juego de corazones.
helpctr: comando para abrir el centro de ayuda.
hypertrm: comando para abrir el hyperterminal.
iexpress: comando para abrir ie 2.0.
ciadv.msc: comando para abrir el servicio de index server.
icwconn1: comando para abrir el asistente para conectar a internet.
iexplore: comando para abrir ie.
inetcpl.cpl: comando para abrir las propiedades de internet explorer.
control keyboard: comando para abrir las propiedades del teclado.
secpol.msc: comando para abrir configuración de seguridad local\directivas de restricción de software.
lusrmgr.msc: comando para abrir directiva de usuarios locales y de grupos.
logoff: comando para cerrar la sesion.
mrt: comando para abrir la herramienta de software mal intencionado.
winchat: comando para abrir winchat de windows.
moviemk: comando para abrir windows movie maker.
mspaint: comando para abrir paint.
mobsync: comando para sincronizar instancias.
winmine: comando para abrir el buscaminas player.
control mouse: comando para abrir las propiedades del ratón.
main.cpl: comando para abrir las propiedades del ratón.
conf: comando para abrir netmeeting.
control netconnections: comando para abrir propiedades de red.
ncpa.cpl: comando para abrir propiedades o conexiones de red.
netsetup.cpl: comando para abrir el asistente para configuracion de red.
notepad: comando para abrir el notepad.
packager: comando para abrir el empaquetador de objeto del sistema.
odbccp32.cpl: comando para abrir el administrador de origen de datos odbc.
osk: comando para ver el teclado de windows en pantalla.
msimn: comando para abrir outlook express.
pbrush: comando para abrir el paint.
perfmon.msc: comando para ver el monitor del sistema.
telephon.cpl: comando para abrir el asitente de marcado.
dialer: comando para abrir el marcador telefonico.
pinball: comando para abrir el juego pinball.
powercfg.cpl: comando para abrir las propiedades de opciones de energia.
intl.cpl: comando para abrir la configuracion regional y de idioma.
regedit: comando para abrir el registro de windows.
rasphone: comando para conectar a una red de Dominio o remota o vpn.
mstsc: comando para ejecutar el escritorio remoto.
ntmsmgr.msc: comando para abrir solicitudes de medios extraibles.
ntmsoprq.msc: comando para abrir solicitudes de medios extraibles, pero de solicitud del operador.
rsop.msc: comando para abrir o realizar el conjunto resultante de directivas.
control schedtasks: comando para abrir el administrador de tareas programadas.
wscui.cpl: comando para abrir el centro de seguridad de windows del pc.
services.msc: comando para abrir administrar los servicios del sistema.
fsmgmt.msc: comando para administrar las carpetas compartidas.
shutdown: comando para apagar el sistema.
mmsys.cpl: comando para abrir las propiedades de sonido y audio.
spider: comando para abrir el juego de spider.
sysedit: comando para abrir el editor de configuración del sistema.
msconfig: comando para abir la utilidad del sistema.
msinfo32: comando para ver toda la información del sistema.
sysdm.cpl: comando para ver la ventana de propiedades del sistema.
taskmgr: comando para abrir el administrador de tareas.
telnet: comando para ejecutar telnet.
nusrmgr.cpl: comando para abrir la ventana de cuentas de usuario.
utilman: comando para abrir el administrador de utilidades.
wab: comando para abrir la libreta de direcciones predeterminada de windows.
wabmig: comando para abrir la herramienta de importación de direcciones de la libreta pred.
explorer: comando para abrir el explorador de carpetas.
firewall.cpl: comando para abrir el firewall de windows.
magnify: comando para abrir el ampliador de windows.
wmimgmt.msc: comando para abrir el wmi.
wmplayer: comando para abrir el windows media player.
msmsgs: comando para abrir el messenger predeterminado de windows.
syskey: comando para cifrar la base de datos de windows.
wupdmgr: comando para conectar a update de windos y actualizarlo.
winver: comando para ver el acerca de windows, muestra la inf. del so.
write: comando para abrir el wordpad.
access.cpl: comando para acceder a la opciones de accesibilidad.
accwiz: comando para usar el asistente para accesibilidad.
hdwwiz.cpl: comando para usar el asistente de agregar hardware.
appwiz.cpl: comando para agregar o quitar programas.
control admintools: comando para usar las herramientas administrativas.
wuaucpl.cpl: comando para utilizar actualizaciones automaticas.
fsquirt: comando para usar el asistente de transferencia con bluetooth.
cal: comando para utilizar la calculadora de Windows.
certmgr.msc: comando para utilizar certificados.
charmap: comando para ver el mapa de caracteres.
chkdsk: comando para utilidades de disco.
cmd: comando para utilizar el promp de windows.
clpbrd: comando para ver el visor de portafolios.
dcomcnfg: comando para ver el servicio de componentes.
compmgmt.msc: comando para ver la administración de equipos.
control: comando para abrir el panel de control.
timedate.cpl: comando para cambiar la hora del sistema, debemos tener permiso para ejecutarlo.ddeshare: comando para ejecutar recursos DDE en el equipo.
devmgmt.msc: comando para ejecutar el administrador de dispositivos.
dxdiag: comando para ejecutar la herramienta de diagnóstico de DirecX.
cleanmgr: comando para usar la herramienta de liberar algún dispositivo del equipo.
dfrg.msc: comando para desfragmentar discos.
diskmgmt.msc: comando para ejecutar el administrador de discos.
diskpart: comando para ejectuar el menu de particiones.
control desktop: comando para ejecutar la ventana de propiedades de pantalla.
desk.cpl: igual que el control desktop, muestra la ventana de propiedades de pantalla.
drwtsn32: comando para ejecutar el Dr. watson para windows.
verifier: comando para ejecutar el administrador del comprobador de controlador
eventvwr.msc: comando para ver el visor de sucesos local.
migwiz: comando para ejecutar el asistente de transferencia de archivo y configuraciones.
sigverif: comando para ejecutar el comprobador de la firma de un archivo.
firefox: comando para ejecutar el navegador firefox.
control folders: comando para ejecutar las opciones de carpetas.
control fonts: comando para abrir la carpeta de fuentes.
fonts: comando para abrir windows\font.
freecell: comando para abrir el juego de carta blanca.
joy.cpl: comando para abrir los controles de dispositivos de juegos.
gpedit.msc: comando para abrir la directiva de grupo.
mshearts: comando para abrir el juego de corazones.
helpctr: comando para abrir el centro de ayuda.
hypertrm: comando para abrir el hyperterminal.
iexpress: comando para abrir ie 2.0.
ciadv.msc: comando para abrir el servicio de index server.
icwconn1: comando para abrir el asistente para conectar a internet.
iexplore: comando para abrir ie.
inetcpl.cpl: comando para abrir las propiedades de internet explorer.
control keyboard: comando para abrir las propiedades del teclado.
secpol.msc: comando para abrir configuración de seguridad local\directivas de restricción de software.
lusrmgr.msc: comando para abrir directiva de usuarios locales y de grupos.
logoff: comando para cerrar la sesion.
mrt: comando para abrir la herramienta de software mal intencionado.
winchat: comando para abrir winchat de windows.
moviemk: comando para abrir windows movie maker.
mspaint: comando para abrir paint.
mobsync: comando para sincronizar instancias.
winmine: comando para abrir el buscaminas player.
control mouse: comando para abrir las propiedades del ratón.
main.cpl: comando para abrir las propiedades del ratón.
conf: comando para abrir netmeeting.
control netconnections: comando para abrir propiedades de red.
ncpa.cpl: comando para abrir propiedades o conexiones de red.
netsetup.cpl: comando para abrir el asistente para configuracion de red.
notepad: comando para abrir el notepad.
packager: comando para abrir el empaquetador de objeto del sistema.
odbccp32.cpl: comando para abrir el administrador de origen de datos odbc.
osk: comando para ver el teclado de windows en pantalla.
msimn: comando para abrir outlook express.
pbrush: comando para abrir el paint.
perfmon.msc: comando para ver el monitor del sistema.
telephon.cpl: comando para abrir el asitente de marcado.
dialer: comando para abrir el marcador telefonico.
pinball: comando para abrir el juego pinball.
powercfg.cpl: comando para abrir las propiedades de opciones de energia.
intl.cpl: comando para abrir la configuracion regional y de idioma.
regedit: comando para abrir el registro de windows.
rasphone: comando para conectar a una red de Dominio o remota o vpn.
mstsc: comando para ejecutar el escritorio remoto.
ntmsmgr.msc: comando para abrir solicitudes de medios extraibles.
ntmsoprq.msc: comando para abrir solicitudes de medios extraibles, pero de solicitud del operador.
rsop.msc: comando para abrir o realizar el conjunto resultante de directivas.
control schedtasks: comando para abrir el administrador de tareas programadas.
wscui.cpl: comando para abrir el centro de seguridad de windows del pc.
services.msc: comando para abrir administrar los servicios del sistema.
fsmgmt.msc: comando para administrar las carpetas compartidas.
shutdown: comando para apagar el sistema.
mmsys.cpl: comando para abrir las propiedades de sonido y audio.
spider: comando para abrir el juego de spider.
sysedit: comando para abrir el editor de configuración del sistema.
msconfig: comando para abir la utilidad del sistema.
msinfo32: comando para ver toda la información del sistema.
sysdm.cpl: comando para ver la ventana de propiedades del sistema.
taskmgr: comando para abrir el administrador de tareas.
telnet: comando para ejecutar telnet.
nusrmgr.cpl: comando para abrir la ventana de cuentas de usuario.
utilman: comando para abrir el administrador de utilidades.
wab: comando para abrir la libreta de direcciones predeterminada de windows.
wabmig: comando para abrir la herramienta de importación de direcciones de la libreta pred.
explorer: comando para abrir el explorador de carpetas.
firewall.cpl: comando para abrir el firewall de windows.
magnify: comando para abrir el ampliador de windows.
wmimgmt.msc: comando para abrir el wmi.
wmplayer: comando para abrir el windows media player.
msmsgs: comando para abrir el messenger predeterminado de windows.
syskey: comando para cifrar la base de datos de windows.
wupdmgr: comando para conectar a update de windos y actualizarlo.
winver: comando para ver el acerca de windows, muestra la inf. del so.
write: comando para abrir el wordpad.
No reenviar, no responder correos en Outlook
Alguna ves un usuario te pidio crear un mensaje el cual no sea posible reenviar
o responder?, Con este tutorial tienes la
respuesta:
http://office.microsoft.com/en-us/outlook/HA011142241033.aspx
http://office.microsoft.com/en-us/outlook/HA011142241033.aspx
recover outlook autocomplement list
Surely you've encountered this problem when a user changes from computer, and
lost all his mailing list that never keep in your contacts list. This is the
solution:
* On the computer that has saved AutoComplete names, go to drive: \ Documents and Settings \ username \ Application Data \ Microsoft \ Outlook. and copy the file with a. NK2 in the new user's computer on the same route.
* If the name of the Outlook user profile is different in the computer you are copying the file. Nk2 must rename the file to be the same user profile name of Outlook after it has copied into the correct folder. For example, if you copy the file from your computer Federico Couto.nk2 original with a user profile name of Outlook for John Baker and Frederick Couto.nk2 copy the file to the new computer, you should change the name to be the name Outlook profile to use on your new computer.
* On the computer that has saved AutoComplete names, go to drive: \ Documents and Settings \ username \ Application Data \ Microsoft \ Outlook. and copy the file with a. NK2 in the new user's computer on the same route.
* If the name of the Outlook user profile is different in the computer you are copying the file. Nk2 must rename the file to be the same user profile name of Outlook after it has copied into the correct folder. For example, if you copy the file from your computer Federico Couto.nk2 original with a user profile name of Outlook for John Baker and Frederick Couto.nk2 copy the file to the new computer, you should change the name to be the name Outlook profile to use on your new computer.
Open file qpro/ abrir archivos qpro Office 2003
Para permitir a Office 2003 que abra archivos guardados en formatos de Excel
anteriores, como por ejemplo archivos Qpro, siga estos pasos:
1. Ingrese a regedit .
2. Busque una de las subclaves siguientes del Registro y haga clic en ella:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\E xcel\Security\FileOpenBlock
HKEY_CURRENT_USER\Software\Policies\Microsoft\Offi ce\11.0\Excel\Security\FileOpenBlock
3. Haga doble clic en la entrada LotusandQuattroFiles del Registro, escriba 0 en el cuadro Informacion del valor y haga clic en Aceptar.
1. Ingrese a regedit .
2. Busque una de las subclaves siguientes del Registro y haga clic en ella:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\E xcel\Security\FileOpenBlock
HKEY_CURRENT_USER\Software\Policies\Microsoft\Offi ce\11.0\Excel\Security\FileOpenBlock
3. Haga doble clic en la entrada LotusandQuattroFiles del Registro, escriba 0 en el cuadro Informacion del valor y haga clic en Aceptar.
Mensaje de Bienvenida/Welcome message Windows
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
* Haga clic con el botón derecho en LegalNoticeCaption, seleccione Modificar y escriba " Mi ordenador Windows XP" y luego pulse Aceptar.
* Haga clic con el botón derecho en LegalNoticeText, seleccione Modificar y escriba el mensaje de su elección.
* Cierre el editor y el mensaje aparecerá la próxima vez que inicie el equipo
Este truco puede utilizarse en ordenadores que pertenezcan a un dominio. Para los ordenadores aislados la pantalla personalizada aparece justo antes de que lo haga la pantalla de bienvenida.
* Haga clic con el botón derecho en LegalNoticeCaption, seleccione Modificar y escriba " Mi ordenador Windows XP" y luego pulse Aceptar.
* Haga clic con el botón derecho en LegalNoticeText, seleccione Modificar y escriba el mensaje de su elección.
* Cierre el editor y el mensaje aparecerá la próxima vez que inicie el equipo
Este truco puede utilizarse en ordenadores que pertenezcan a un dominio. Para los ordenadores aislados la pantalla personalizada aparece justo antes de que lo haga la pantalla de bienvenida.
Active Desktop Recovery Windows XP
Option 1
1.Open an explorer window (open My Computer for example)
2.Tools
3.Folder Options
4.View
5.Uncheck Hide protected operating system files
6.Now do a search for desktop.htt…it should be on your C: normally
7.Delete any desktop.htt files you find (there could be more than one depending on how many user profiles are on the machine) They should be located in Documents and Settings\User\Application Data\Microsoft\Internet Explorer
8.Close all windows you have open
9.Now reboot your PC..Windows will recreate desktop.htt for you and it should work!
oops…I almost forgot….go ahead a place a check back in Hide protected operating system files
Option 2
1.Go to Run, type regedit and hit enter
2.Go here HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components
3.Select the value DeskHtmlVersion
4.Select the Decimal radial button
5.Change the value of 272 to 0
6.Most of the time it might take a few seconds for your background to appear and other times…you might need to restart your computer.
1.Open an explorer window (open My Computer for example)
2.Tools
3.Folder Options
4.View
5.Uncheck Hide protected operating system files
6.Now do a search for desktop.htt…it should be on your C: normally
7.Delete any desktop.htt files you find (there could be more than one depending on how many user profiles are on the machine) They should be located in Documents and Settings\User\Application Data\Microsoft\Internet Explorer
8.Close all windows you have open
9.Now reboot your PC..Windows will recreate desktop.htt for you and it should work!
oops…I almost forgot….go ahead a place a check back in Hide protected operating system files
Option 2
1.Go to Run, type regedit and hit enter
2.Go here HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components
3.Select the value DeskHtmlVersion
4.Select the Decimal radial button
5.Change the value of 272 to 0
6.Most of the time it might take a few seconds for your background to appear and other times…you might need to restart your computer.
Conectividad limitada o nula
Cuando te sale el mensaje de "Conectividad Limitada o Nula" en la tarjeta de red
siendo que esta el driver instalado, ejecuta este comando y luego reinicia la PC
c:\>netsh winsock reset
c:\>netsh winsock reset
Ejecutar panel de control de teclado y mouse en Windows 7
como soporte puedes ejecutar control /name Microsoft.Keyboard desde el CMD con
privilegios de y para ratón control /name Microsoft.Mouse
Configuracion regional intl.cpl
error 0x000006d9
La configuracion de la impresora no se pudo guardar. No se pudo completar la
operacion. SOLUCION. Seguramente estas tratando de compartir una impresora en
Windows 7. Inicia el firewall de windows, luego realiza la operacion de
compartir impresora. Si tu firewall tiene que estar abajo, pues entonces lo
detienes el servicio nuevamente. La impresora quedará compartida.
Ya hay abierto un documento denominado ".xls"
Ya hay abierto un documento denominado ".xls". No se puede abrir dos documentos
con el mismo nombre, incluso si estan en carpetas diferentes.
Para abrir el segundo documento cierre el documento abierto actualmente o cambie el nombre de uno de los documentos.
SOLUCION en Excel
Pestaña Archivo/Opciones
Centro de confianza/Configuracion del centro de confianza
Vista Protegida, luego destiquear todas las opciones marcadas.
Reiniciar excel y listo.
Para abrir el segundo documento cierre el documento abierto actualmente o cambie el nombre de uno de los documentos.
SOLUCION en Excel
Pestaña Archivo/Opciones
Centro de confianza/Configuracion del centro de confianza
Vista Protegida, luego destiquear todas las opciones marcadas.
Reiniciar excel y listo.
pendrive sin datos
Con seguridad en mas de
una ocasión alguien te trajo su flash para decirte que no se encuentran sus
datos en el flash memory, pero te fijas en las propiedades y hay espacio
ocupado. Bueno eso se debe a algun virusillo que te oculta las carpetas.
Ejecutar un cmd, entrar en la unidad del flash y ejecutar.
Tasmbien sucede en las unidades de red.
K:\>ATTRIB -r -s -h *.* /s /d
ver video tutorial: http://www.youtube.com/watch?v=mZMjyyAQ1sw&feature=youtu.be
Tasmbien sucede en las unidades de red.
K:\>ATTRIB -r -s -h *.* /s /d
ver video tutorial: http://www.youtube.com/watch?v=mZMjyyAQ1sw&feature=youtu.be
Suscribirse a:
Entradas (Atom)