PowerShell查看历史记录】的更多相关文章

PowerShell的所有历史记录:   Get-Content (Get-PSReadLineOption).HistorySavePath   顺手写了一个掉用的函数:  function Get-AllHistory { $his = Get-Content (Get-PSReadLineOption).HistorySavePath $n = $his.Length $out = @() for($i=0;$i -lt $n;$i++) { $out = $out + "$i $($hi…
以下是用powershell查看Cube占用磁盘空间大小的方式.可以编译成函数也可以直接把参数改成需要的服务器名称. Param($ServerName="SERVERNAME") $loadInfo = [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices") $server = New-Object Microsoft.AnalysisServices.Server $ser…
1.查看历史记录git log 1)不加参数,显示的就是节点号,作者,日期,注释 commit b7b310d220628530d1feb9e8046ccb59039d59f2 Author: zhangshuli <zhangshuli@vanzotec.cn> Date: Sat Feb :: + cherry-pick commit ac63f3e801e4022b34ba14ed9d1ae75b022ff067 Merge: 02906a1 618011f Author: zhangs…
在Windows下我们可以通过在cmd中输入adb logcat相关命令来查看安卓设备上的log信息,这在PowerShell里也可以做到.所以方便做成一个脚本,以便复用.代码如下: function List($target) { if($target.count -gt 1) { for($i=1;$i -le $target.count;$i++) { if(($target[$i] -ne "")-and($target[$i] -ne $null)) { "[&qu…
Ps:powershell功能十分强大,这里只是简单说明一些比较常用的 get-wmiobject(获取对象) 查看本机的BIOS信息 1.         使用命令:get-wmiobject Win32_BIOS 2.         使用以下语句进行查看 param( [string]$strComputer = "." ) $colItems = get-wmiobject -class "Win32_BIOS" -namespace "root\…
在运维工作中,常常查看某个业务的网络连接状况,在这里借用netstat来实现查找连接.用hash特性避免反复. $add=@{} while(1){ ps|?{$_.path -match 'E:\\games\\梦幻XX}|%{ $id=$_.id netstat -ano | ForEach-Object { $i = $_ | Select-Object -Property Protocol , Source , Destination , Mode ,pid $null, $i.Prot…
在 GitHub 的 UI 界面使用 Git 查看历史纪录 1. 右侧有个 history 2. 点击后跳转页面 3. 点击相应标题(commit 时写的),进入相应版本(历史) 4. 我选择了 I am adding heap. 点击,出现如下页面 箭头处说明第 4 行时该次 commit 加入的 5. 右侧有一串哈希值 6. 网址处也有一串相同的,暂且可以简单地理解为 id 号 参考:网友搬运"油管"的 Daniel Shiffman 的 Git 入门课…
查看:get-hotfix -id KB4470788 卸载:wusa /uninstall /kb:3045999 get-hotfix -id KB4470788 wusa /uninstall /kb:…
在终端输入$PSVersionTable…