Skip to content

Commit 8725e6c

Browse files
authored
Merge pull request #33715 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents f903a49 + b753339 commit 8725e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/integration-services/ssis-quickstart-run-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Below is a basic example of how to execute an SSIS package in a package catalog
4848

4949
```powershell
5050
(Get-ChildItem SQLSERVER:\SSIS\localhost\Default\Catalogs\SSISDB\Folders\Project1Folder\Projects\'Integration Services Project1'\Packages\ |
51-
WHERE { $_.Name -eq 'Package.dtsx' }).Execute("false", $null)
51+
WHERE { $_.Name -eq 'Package.dtsx' }).Execute($false, $null)
5252
```
5353

5454
## PowerShell script
@@ -91,7 +91,7 @@ $package = $project.Packages[$PackageName]
9191
9292
Write-Host "Running " $PackageName "..."
9393
94-
$result = $package.Execute("false", $null)
94+
$result = $package.Execute($false, $null)
9595
9696
Write-Host "Done."
9797
```

0 commit comments

Comments
 (0)