Localizar qué usuario y que consultas están colapsando mysql

Para localizar el usuario y consulta que colapsa mysql abres el Heidi Asegúrate que estás en el servidor y no en ninguna base de datos. Entra en la pestaña de procesos. A la derecha de cada conexión ves el tiempo de la última instrucción y la query que han lanzado.  

Despliegue de MSI en GPO de dominio para instalar una aplicación en todo un Dominio Windows

Para desplegar un fichero MSI en todos los usuarios de un dominio Windows, es necesario crear este script de VBS: Dim dialog_name, dir_sccm, local(1), objIE, WshEnv, objShell, objRed, cmd_line(2) Set objRed = CreateObject(«Wscript.Network») Set objIE = CreateObject(«internetexplorer.application») Set objShell = CreateObject(«WScript.Shell») Set FSO = CreateObject(«Scripting.FileSystemObject») set WshEnv = objShell.Environment(«Process») ‘Revisar si el programa está instalada, […]

fairgree.gunther@aol.com

fairgree.gunther@aol.com Today we have contacted customer with a new type of ransomware with . Acton The files are fully encrypted and renamed with the extension, id[42E0C234-1942]. [fairgree.gunther@aol.com]. Acton This encryption is a new Dharma version that has no free solution at present, if you want us to give you a quote and confirm if there […]

First steps after ransomware attack, instructions to follow

If you’re reading this, it’s that you’ve unfortunately been the victim of a ransomware attack. Our company has helped in hundreds of ransomware cases and we have some experience that we can share, and that’s why we’ve put together a guide with a few first steps of action after the attack: 1. Determine Source: 80% […]

Enable office365 auto-expanding archiving

Connect to your account from powershell (Para poder realizar la conexión, tiene que ser desde Powershell 7): Para conectarnos al tenant, escribimos el siguiente comando. Nos redirige a la página de login de Microsoft, donde iniciaremos sesión con la cuenta de administrador del tenant. Connect-ExchangeOnline HABILITAR EXPANSIÓN AUTOMÁTICA DE ARCHIVADO: Enable-Mailbox <user mailbox> -AutoExpandingArchive COMPROBAR […]

DELL Spain support phone

For technical or support issues with any DELL equipment under warranty, please call: 902 10 01 30 They will request the service tag (DELL serial number) of the computer on the call, it is on a sticker stuck on the computer.

Habilitar archivado de expansión automática office365

Conectarse a la cuenta desde powershell:   $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session -DisableNameChecking HABILITAR EXPANSIÓN AUTOMÁTICA DE ARCHIVADO: Enable-Mailbox <user mailbox> -AutoExpandingArchive COMPROBAR QUE ESTA ACTIVADO, TIENE QUE DEVOLVER TRUE: Get-Mailbox <user mailbox> | FL AutoExpandingArchiveEnabled

Limpiar elementos recuperables de Office 365 Exchange Online

Ver el contenido que ocupa cada carpeta: https://outlook.office.com/owa/?path=/options/mailboxcleanup Conectarse por PowerShell como Administrador local: Set-ExecutionPolicy RemoteSigned $UserCredential = Get-Credential Import-PSSession $Session $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Ver las estadísticas de los correos en Purga / Recuperables cuyo límite es 30GB: Get-MailboxFolderStatistics -Identity «usuario@dominio.es» -FolderScope RecoverableItems | Format-Table Name,FolderAndSubfolderSize,ItemsInFolderAndSubfolders -Auto Ver […]

HxD potente Editor Hexadecimal de Memoria y Disco Duro

Editor hexadecimal  gratuito capaz no sólo de abrir ficheros, sino también de leer y escribir datos en sectores del disco duro y procesos en memoria. Página de descarga y del autor: https://mh-nexus.de/en/hxd/ Compatible con varios estándares, HxD puede copiar datos en texto puro, HTML o como variable para lenguajes de programación. El tamaño de los […]