无法找到类型[System.IO.Compression.CompressionLevel],请确保已加载包含此类型的程序集

时间:2014-06-05 11:41:01

标签: powershell powershell-v2.0 windows-server-2008-r2

我编写了这个PowerShell脚本,该脚本应该在特定日期范围内存档所有日志文件。

$currentDate = Get-Date;
$currentDate | Get-Member -Membertype Method Add;
$daysBefore = -1;
$archiveTillDate = $currentDate.AddDays($daysBefore);

$sourcePath = 'C:\LOGS';
$destPath='C:\LogArchieve\'+$archiveTillDate.Day+$archiveTillDate.Month+$archiveTillDate.Year+'.zip';

foreach( $item in (Get-ChildItem $sourcePath | Where-Object { $_.CreationTime -le $archiveTillDate }) )
{
    [Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem");
    $compressionLevel = [System.IO.Compression.CompressionLevel]::Optimal;
    [System.IO.Compression.ZipFile]::CreateFromDirectory($sourcePath,$destPath, $compressionLevel, $false);
}

它一直工作到foreach循环之前,但是在循环中它会产生这些错误:

Unable to find type [System.IO.Compression.CompressionLevel]: make sure that the assembly containing this type is loaded.
At line:4 char:65
+ $compressionLevel = [System.IO.Compression.CompressionLevel] <<<< ::Optimal;
+ CategoryInfo          : InvalidOperation: (System.IO.Compression.CompressionLevel:String) [], RuntimeException
+ FullyQualifiedErrorId : TypeNotFound

由于System.IO.Compression.NET 4.5的一部分,我已将其安装在系统上,但我仍然遇到这些错误。

我在Windows Server 2008 R2和PowerShell v2.0上。

我怎样才能让它发挥作用?

3 个答案:

答案 0 :(得分:25)

请尝试使用Add-Type -AssemblyName System.IO.Compression.FileSystem。它更干净,并且不依赖于需要安装Visual Studio的引用程序集。

答案 1 :(得分:14)

您可以手动将.NET类添加到PowerShell会话中。

从脚本中删除[Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem");并在最顶部添加以下内容:

Add-Type -Path "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.IO.Compression.FileSystem.dll"

或在32位盒子上:

Add-Type -Path "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.IO.Compression.FileSystem.dll"

这假设您的系统上安装了.NET 4.5,并且System.IO.Compression.FileSystem.dll实际存在。

答案 2 :(得分:0)

另外,请务必检查$ pshome exe.config文件。我有一个问题,Powershell ISE拒绝加载.NET程序集,因为配置文件列出了.NET 2.0而不是4。