2012-08-08 21 views
1

我最近在Windows 7機器上安裝了Windows6.1-KB2506143-x64,以便我可以使用Powershell 3.0。在運行更新並啓動Powershell窗口後,它肯定是版本3.但是,似乎沒有安裝Workflow的東西。運行Get-Module -ListAvailable不顯示任何工作流程內容:爲什麼我在Windows 7上看不到Powershell 3.0中的工作流程模塊?

ModuleType Name        ExportedCommands 
---------- ----        ---------------- 
Manifest BitsTransfer      {Add-BitsFile, Remove-BitsTransfer, Complete-BitsTransfer, Get-BitsTr... 
Manifest CimCmdlets       {Get-CimAssociatedInstance, Get-CimClass, Get-CimInstance, Get-CimSes... 
Script  ISE         {New-IseSnippet, Import-IseSnippet, Get-IseSnippet} 
Manifest Microsoft.PowerShell.Diagnostics {Get-WinEvent, Get-Counter, Import-Counter, Export-Counter...} 
Manifest Microsoft.PowerShell.Host   {Start-Transcript, Stop-Transcript} 
Manifest Microsoft.PowerShell.Management  {Add-Content, Clear-Content, Clear-ItemProperty, Join-Path...} 
Manifest Microsoft.PowerShell.Security  {Get-Acl, Set-Acl, Get-PfxCertificate, Get-Credential...} 
Manifest Microsoft.PowerShell.Utility  {Format-List, Format-Custom, Format-Table, Format-Wide...} 
Manifest Microsoft.WSMan.Management   {Disable-WSManCredSSP, Enable-WSManCredSSP, Get-WSManCredSSP, Set-WSM... 
Script  PSDiagnostics      {Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, E... 
Binary  PSScheduledJob      {New-JobTrigger, Add-JobTrigger, Remove-JobTrigger, Get-JobTrigger...} 
Manifest TroubleshootingPack     {Get-TroubleshootingPack, Invoke-TroubleshootingPack} 

任何想法?

回答

1

如果您在64位Windows 7上運行,請確保您正在運行64位PowerShell控制檯.PSWorkflow模塊在x86 PowerShell控制檯中不可用。

+0

這正是我需要做的,謝謝! – 2012-08-09 10:55:37

相關問題