我尝试过一个简单的事情:
wget https://www.dropbox.com/sh/dropboxStuff/dropboxStuff?dl=1 -O DirectoryName
但它正在下载一个zip文件。
答案 0 :(得分:3)
在Powershell v5中
document.addEventListener("resume", function() {
console.log('EVENT resume');
try{
navigator.splashscreen.show();
}
catch(e){}
}, false);
了解你的PS vesion
Expand-Archive c:\a.zip -DestinationPath c:\a
如果您没有PS v5
$PSVersionTable.PSVersion
答案 1 :(得分:1)
使用PowerShell 5 Expand-Archive
cmdlet在一行中执行此操作:
Invoke-WebRequest -Uri https://www.dropbox.com/sh/dropboxStuff/dropboxStuff?dl=1 -O temp.zip; Get-Item temp.zip | Expand-Archive -DestinationPath "FolderName"; Remove-Item temp.zip