top of page
Foto del escritorRodolfo Castro

Skype for Business | Debugging Tools Script

Hey!

This is a pretty basic script that download and install Skype for Business Debugging Tools.

Hope this helps you.

 

Que tal!

Este es un script basico pero muy util, para descargar e instalar el Debuggin Tools de Skype for Business.

Espero sea de ayuda.

    <# ****ESPANOL     Script sencillo pero util para descargar el Skype for Business Debuggin Tools.

****ENGLISH     Simply but useful script to Download and Install Skype for Business Debuggin Tools # Created by MVP Rodolfo Castro Aguilar Date: 08/04/2016 Version 1.0 #>

$url = “https://download.microsoft.com/download/A/6/0/A603FC51-2C03-48B2-A072-587FA1D3DFAF/SkypeForBusinessDebugTools.msi&#8221; $output = “$PSScriptRoot\SkypeForBusinessDebugTools.msi” $start_time = Get-Date     Import-Module BitsTransfer Start-BitsTransfer -Source $url -Destination $output     Write-Output “Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)” <#Comment the follows lines if dont want to install Debugging Tools, only download it #> <#Comenta las siguientes lineas sino quieres instalar el Debuggin Tools, sino solo descargarlo#>     Write-Output “Installing Skype for Business Debuggin Tools” & $output

3 visualizaciones0 comentarios

Entradas recientes

Ver todo

Comments


bottom of page