Uninstall-PswaWebApplication

Uninstall-PswaWebApplication

Uninstalls the Windows PowerShell® web application.

Sintaxis

Parameter Set: Default
Uninstall-PswaWebApplication [[-WebApplicationName] <String> ] [-DeleteTestCertificate] [-WebSiteName <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Descripción detallada

The Uninstall-PswaWebApplication cmdlet uninstalls the Windows PowerShell web application and removes the website from IIS. The cmdlet does not uninstall IIS, or any other features installed because they were required for Windows PowerShell to run.

Parámetros

-DeleteTestCertificate

Indicates that the test certificates created by the Install_PswaWebApplication cmdlet (with the UseTestCertificate parameter) is deleted. Only the test certificate with the same name as the one created by the Install-PswaWebApplication cmdlet is removed.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

true

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-WebApplicationName<String>

Specifies the name of the web application to uninstall.

Alias

ninguno

¿Requerido?

false

¿Posición?

1

Valor predeterminado

pswa

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-WebSiteName<String>

Specifies the name of the web site where the web application is installed.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

Default Web Site

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Confirm

Solicita confirmación antes de ejecutar el cmdlet.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-WhatIf

Muestra lo que sucedería si se ejecutara el cmdlet. El cmdlet no se ejecuta.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

EXAMPLE 1

This command uninstalls the Windows PowerShell Web Application. You can use this cmdlet to uninstall the Windows PowerShell Web Application if you installed it using the default values.

PS C:\> Uninstall-PswaWebApplication

EXAMPLE 2

This command uninstalls the Windows PowerShell Web Application, and deletes the test certificate associated with the application. You can use this cmdlet to uninstall the Windows PowerShell Web Application if you installed it using the default values and created a test certificate.

PS C:\> Uninstall-PswaWebApplication -DeleteTestCertificate

EXAMPLE 3

This command uninstalls the Windows PowerShell Web Application when a custom website and application were specified during the install. The command removes the website named MySite and the application named TestApplication and specifies that the test certificates associated with the application are also deleted.

PS C:\> Uninstall-PswaWebApplication -WebApplicationName TestApplication -WebsiteName MySite -DeleteTestCertificate

Temas relacionados

Install-PswaWebApplication