Windows PowerShell command on Get-command Remove-OdbcDsn
MyWebUniversity

Windows PowerShell command on Get-command Remove-OdbcDsn

NAME

Remove-OdbcDsn

SYNOPSIS

Removes ODBC DSNs.

SYNTAX

Remove-OdbcDsn [-CimSession ] [-PassThru] [-ThrottleLimit ] [-Confirm] [-WhatIf]

[]

Remove-OdbcDsn [-Name] [-CimSession ] [-DriverName ] [-PassThru] [-Platform {32-bit

| 64-bit | All}] [-ThrottleLimit ] -DsnType {User | System | All} [-Confirm] [-WhatIf] []

DESCRIPTION

The Remove-OdbcDsn cmdlet removes Open Database Connectivity (ODBC) data source names (DSNs) from the computer.

For more information about ODBC, data source names, and drivers, see Microsoft Open Database Connectivity (ODBC)

(http://msdn.microsoft.com/en-us/library/ms710252.aspx), Data Sources

(http://msdn.microsoft.com/en-us/library/ms711688.aspx), and Drivers

(http://msdn.microsoft.com/en-us/library/ms715383.aspx) on the Microsoft Developer Network.

PARAMETERS

-Name

Specifies the name of an ODBC DSNs. You can use wildcard characters to specify more than one name. This cmdlet removes the DSNs that the names specify. Required? true Position? 1 Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-DsnType

Specifies the type of an ODBC DSN. This cmdlet removes DSNs of the type that this parameter specifies. The acceptable values for this parameter are:

-- User

-- System

-- All

Required? true Position? named Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-Platform []

Specifies the platform architecture. This cmdlet removes the ODBC DSNs that belong to the architecture that this parameter specifies. The acceptable values for this parameter are:

-- 32-bit

-- 64-bit

-- All

The default value is 32-bit on a 32-bit process. The default value is 64-bit on a 64-bit process. If you run

this cmdlet in a remote CIM session, this parameter refers to the platform architecture on the remote computer. Required? false Position? named Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-DriverName []

Specifies the name of a driver. This cmdlet removes the ODBC DSN that uses the driver that this parameter specifies. You can use wildcard characters. If you do not specify this parameter, this cmdlet removes DSNs for all drivers. Required? false Position? named Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-PassThru []

Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false

-CimSession []

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such

as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local

computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false

-ThrottleLimit []

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShellr calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false

-Confirm []

Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false

-WhatIf []

Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

OUTPUTS

Microsoft.Management.Infrastructure.CimInstance#MSFT_OdbcDsn[]

Example 1: Remove 32-bit User DSNs that have names that contain a string

PS C:\> Remove-OdbcDsn -Name "*Payroll*" -DsnType "User" -Platform "32-bit"

This command removes the 32-bit ODBC User DSNs that have names that contain Payroll.

Example 2: Remove the System DSN named MyPayroll from the native platform

PS C:\> Remove-OdbcDsn -Name "MyPayroll" -DsnType "System"

This command removes the ODBC System DSN named MyPayroll from the native platform.

Example 3: Remove all 32-bit ODBC System DSNs by using wildcard characters

PS C:\> Remove-OdbcDsn -Name "*Payroll*" -DsnType "System" -Platform "32-bit" -DriverName "SQL Server*"

This command removes all 32-bit ODBC System DSNs that have names that contain the string *Payroll*, and use the

driver that has a name that starts with SQL Server.

Example 4: Remove a 32-bit ODBC User DSN by using a name

PS C:\> $SysDsn = Remove-OdbcDsn -Name "MyPayroll" -DsnType "User" -Platform "32-bit" -PassThru

This command removes the 32-bit ODBC User DSNs named MyPayroll, and then stores the deleted DSN object in the

$SysDsn variable.

Example 5: Remove a System DSN on the native platform by using the pipeline operator

PS C:\> Get-OdbcDsn -Name "MyPayroll" -DsnType "System" | Remove-OdbcDsn

This command uses the Get-OdbcDsn to get the ODBC System DSN on the native platform named MyPayroll, and then

passes it to the current cmdlet by using the pipeline operator. The example removes that DSN.

Example 6: Remove a ODBC System DSN on the native platform by using a variable

PS C:\> $DsnArray = Get-OdbcDsn -Name "MyPayroll" -DsnType "System"

PS C:\> Remove-OdbcDsn -InputObject $DsnArray

The first command uses Get-OdbcDsn to get the ODBC System DSN on the native platform named MyPayroll, and then

stores it in the $DsnArray variable.

The second command removes the DSN stored in $DsnArray.

RELATED LINKS

Add-OdbcDsn

Get-OdbcDsn

Set-OdbcDsn



Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 OurUNIX.com ™