Mostrando las entradas con la etiqueta windows. Mostrar todas las entradas
Mostrando las entradas con la etiqueta windows. Mostrar todas las entradas
miércoles, 4 de diciembre de 2019
borrar todos los procesos con el mismo nombre
lunes, 15 de abril de 2019
deshabilitar adobe acrobat update service
services.msc
seleccionar Adobe Acrobat Update Service
detener servicio
startup type: Disabled
fuente
seleccionar Adobe Acrobat Update Service
detener servicio
startup type: Disabled
fuente
miércoles, 5 de diciembre de 2018
Atributos certificado
CN: CommonNameOU: OrganizationalUnitO: OrganizationL: LocalityS: StateOrProvinceNameC: CountryName
miércoles, 3 de octubre de 2018
Dejar aplicación en administrador de tareas
Imports System.Reflection
Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal nCmdShow As Integer) As Boolean
Public Shared Sub HideWindow()
Dim SW_HIDE As Integer = 0
For Each pr As Process In Process.GetProcesses
If pr.ProcessName.Contains("AcroRd32") Then
'Int32 hWnd = pr.MainWindowHandle.ToInt32();
ShowWindow(pr.MainWindowHandle, SW_HIDE)
End If
Next
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
HideWindow()
End Sub
fuente
Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal nCmdShow As Integer) As Boolean
Public Shared Sub HideWindow()
Dim SW_HIDE As Integer = 0
For Each pr As Process In Process.GetProcesses
If pr.ProcessName.Contains("AcroRd32") Then
'Int32 hWnd = pr.MainWindowHandle.ToInt32();
ShowWindow(pr.MainWindowHandle, SW_HIDE)
End If
Next
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
HideWindow()
End Sub
fuente
jueves, 26 de julio de 2018
cmd.exe windows 10
-Administrador de tareas
-Archivo
-Ejecutar nueva tarea
-Abrir: cmd.exe
Se encuentra en C:\Windows\System32\cmd.exe
-Archivo
-Ejecutar nueva tarea
-Abrir: cmd.exe
Se encuentra en C:\Windows\System32\cmd.exe
miércoles, 27 de junio de 2018
ip del equipo
Dim localIp As String = ""
For Each address As System.Net.IPAddress In System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName).AddressList
If address.AddressFamily = Net.Sockets.AddressFamily.InterNetwork Then
localIp = address.ToString()
Exit For
End If
Next
fuente
For Each address As System.Net.IPAddress In System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName).AddressList
If address.AddressFamily = Net.Sockets.AddressFamily.InterNetwork Then
localIp = address.ToString()
Exit For
End If
Next
fuente
Etiquetas:
AddressFamily,
ip,
IPAddress,
windows
jueves, 31 de mayo de 2018
Activar/Desactivar NIC
Get NIC list and index number:
wmic nic get name, index
Enable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call enable
Disable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call disable
fuente
wmic nic get name, index
Enable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call enable
Disable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call disable
fuente
viernes, 9 de marzo de 2018
Historial de comandos en cmd
>doskey /history
miércoles, 17 de enero de 2018
Abrir programas y características windows 7 línea de comando
appwiz.cpl
jueves, 4 de enero de 2018
Ejecutar programa al iniciar windows
-Tecla Windows + R (Ejecutar)
-shell:startup
carpeta pública del menú de inicio
shell:common startup
carpeta pública del menú de inicio
shell:common startup
miércoles, 20 de julio de 2016
Convertir tabulaciones en espacios notepad++
viernes, 6 de mayo de 2016
Escritorio remoto pantalla completa
CTRL + ALT + PAUSE
lunes, 7 de marzo de 2016
Ver o administrar los certificados
certmgr.msc
inicio-->ejecutar-->mmc
inicio-->ejecutar-->mmc
miércoles, 3 de febrero de 2016
Teclado en pantalla OSK (On-Screen Keyboard)
inicio-->ejecutar-->osk.exe
jueves, 14 de enero de 2016
Apagar y Reiniciar equipo
Apagar: shutdown.exe -s -t 00
Reiciniar: shutdown.exe -r -t 00
Reiciniar: shutdown.exe -r -t 00
Suscribirse a:
Entradas (Atom)