M@rTIn's

Desde el 2007 en Geeks.ms

mes

diciembre 2014

Utilizar Exchange Management Shell para solicitar un certificado SSL

Debe ejecutar el siguiente comando (ejemplo) New-ExchangeCertificate -generaterequest -subjectname “CN=correo.gruopITPRO.cl, OU=Soc. de Computación Itpro.cl S.A., L= Santiago, S=Santiago, C=cl” -domainname correo.ITPRO.CL, autodiscover.ITPRO.CL, xc-w-spp-01.ITPRO.CL, xc-w-spa-02.ITPRO.CL, xc-w-spp-01, xc-w-spa-02, ITPRO.CL -PrivateKeyExportable $true -path c:certrequest.txt Una vez generado el comando, se creará un archivo… Seguir leyendo →

Utilizar Exchange Management Shell para agregar usuarios a una política de buzón de Exchange ActiveSync

Ejecute el siguiente comando para agregar el usuario jmichels a la política Security01 Set-CASMailbox jmichels -ActiveSyncMailboxPolicy(Get-ActiveSyncMailboxPolicy Security01).Identity Ejecute el siguiente comando para agregar todos los usuarios a una política de Exchange ActiveSync Get-Mailbox | where { $_.CustomAttribute1 -match “Manager” }… Seguir leyendo →

Utilizar Exchange Management Shell para crear una política de Exchange ActiveSync

Ejecute el siguiente comando, modificando los parámetros según sea necesario: New-ActiveSyncMaiboxPolicy -Name “Nueva Politica” -DevicePasswordEnabled:$false -AlphanumericDevicePasswordRequired:$false -MaxInactivityTimeDeviceLock:’unlimited’ -MinDevicePasswordLength:$null -PasswordReciveryEnabled:$false -DeviceEncryptionEnabled:$false -AttachmentsEnabled:$true

Utilizar Exchange Management Shell para recuperar una contraseña de dispositivo

Ejecute el siguiente comando: Get-ActiveSyncDeviceStatistics -Mailbox:”alias” -ShowRecoveryPassword:$true

Utilizar Exchange Management Shell para realizar una eliminación de datos del dispositivo móvil

Ejecute el siguiente comando para obtener la identidad del dispositivo Get-ActiveSyncDeviceStatistics – Mailbox mgavilanc | fl Identity   Luego ejecute el siguiente comando: Clear-ActiveSyncDevice -Identity AirSync-iPhone-App1328180B4WH8

Utilizar Exchange Management Shell para habilitar o deshabilitar ActiveSync en un usuario

Para habilitar ActiveSync para un usuario de alias jmichels, ejecute el siguiente comando: Set-CASMailbox -Identity jmichels -ActiveSyncEnabled $true Para deshabilitar ActiveSync para un usuario de alias jmichels, ejecute el siguiente comando: Set-CASMailbox -Identity jmichels -ActiveSyncEnabled $false

Utilizar Exchange Management Shell para modificar las propiedades de un directorio virtual de ActiveSync

Ejecute el siguiente comando: Set-ActiveSyncVirtualDirectory -Identity “XC-W-SPP-01Microsoft-Server-ActiveSync (Default Web Site)” -CompressionEnabled: $true -ExternalURL “www.ITPRO.CL/Microsoft-Server-ActiveSync”

Utilizar Exchange Management Shell para deshabilitar Outlook Anywhere

Ejecute el siguiente comando: disable-OutlookAnywhere -Server:’ServerName’

Utilizar Exchange Management Shell para habilitar Outlook Anywhere

Ejecute el siguiente comando: enable-OutlookAnywhere -Server:’ServerName’ -ExternalHostName:’ExternalHostName’-ExternalAuthenticationMethod:’Basic’ -SSLOffloading:$false La ejecución de este cmdlet con los parámetros ExternalAuthenticationMethod y SSLOffloading habilitará Outlook en cualquier lugar con autenticación básica y sin descarga de SSL

Utilizar Exchange Management Shell para configurar las opciones de idioma de error e inicio de sesión en Outlook Web Access

Ejecute el comando siguiente para establecer la configuración del idioma de errores y del inicio de sesión Set-OwaVirtualDirectory -identity “Owa (Default Web Site)” -LogonAndErrorLanguage <language code> En el parámetro <language code> debe incluir el código de lenguaje. Esta información puede… Seguir leyendo →

© 2024 M@rTIn's — Funciona gracias a WordPress

Tema realizado por Anders NorenIr arriba ↑