首页 » Archive by category 'Tutorials' (Page 2)
AD RMS – Office client could not connect to the Internet to check permission
Situation
Your AD RMS client is a workgroup client, you installed Office 2013 or 2016, and setup the discovery service by registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSIPC\ServiceLocation\EnterpriseCertification
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSIPC\ServiceLocation\EnterprisePublishing
However, you encountered ... [阅读全文]
PowerShell: 批量导入Hyper-V虚拟机
前提条件
本文所介绍的方法要求以下目录保持原有的相对关系、目录结构及所在盘符不能改变。
Virtual Machines
Snapshots
VHD文件夹(可以是多个)
导入方法
path = 'D:\Hyper-V\Virtual Machines'
# Get the VM configuration files
Get-ChildItempath -Recurse -Filter *.vmcx
# Check VM import / register
Get-ChildItem path -Recurse... [阅读全文]
How to restart a SCCM OSD Task Sequence within WinPE
Introduction
本文介绍如何在不重启的情况下,重新加载SCCM OSD任务序列(Task Sequence)
This article describes how to restart SCCM OSD task sequence within PE without restarting the computer.
Steps:
del X:\SMS\data\variables.dat
TsmBootstrap.exe /env:WinPE /configpath:x:\sms\data
Notes:
如果之前由于任务序列出错导致任务终止,需... [阅读全文]
Manually setup Azure Point-to-Site (P2S) VPN on client computer
Introduction
Azure point to site VPN uses SSTP (Secure Socket Tunneling Protocol) to establish VPN connection. The default port is on 443.
So the prerequisite is that you have finished setup a P2S VPN on Azure:
Configure a Point-to-Site connection to a VNet using the Azure portal
Today, I am going to show you how to manually ... [阅读全文]
Mount VHD at Windows startup with PowerShell
Create a scheduled task
Command:
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe
Parameter:
-ExecutionPolicy ByPass -file "C:\VHD\mountVHD.ps1"
Powershell Script to mount VHD
Method1: Mount-DiskImage (Recommended)
This is the recommended command to mound VHD as it does not rely on the Hyper-V role.
Mount-DiskIma... [阅读全文]
Debian or Raspbian: nfs-kernel-server not starting portmapper is not running
lesca | Tutorials | 2016-05-04
Error Message
Debian or Raspbian: nfs-kernel-server not starting portmapper is not running … (warning) rpcbind.target
Fix Steps
Here is my first try, but it doesn’t work for me. It just reset the configs. So if you messed it up, try this first.
apt-get purge rpcbind nfs-kernel-server nfs-common
apt-get install ... [阅读全文]
HP 服务器 UID 指示灯的作用
lesca | Tutorials, Uncategorized | 2015-09-27
The Virtual Indicators allow you to monitor, and in some cases control, the state of indicators on the host system, including the Unit Identification Light (UID).
The Unit Identification Light (UID)
The UID helps you identify and locate a system, especially in high-density rack environments. Additionally, the UID is used to i... [阅读全文]
Google Chrome 绿化与个性化教程
lesca | Tutorials | 2015-05-07
由于chrome v30开始有些特性不讨人喜欢,所以很多人喜欢停留在v29,只是在保留老习惯的同时,一些新的扩展就不能使用了。但是总不能让谷歌任行其道对吧?Lesca将以v29为例,介绍如何绿化Chrome,并在v29上使用Chrome Web Store上的新版本扩展,如Proxy SwitchyOmega。下面先奉上做好的绿色版。
做好的绿色版
百度网盘下载:Chrome-bin.zip
下载好后解压... [阅读全文]
Test Peer to Peer Connection Speed with iperf3
Hi! I am writing to explain how to test your network connection between your client (Windows or Linux) and another client (say, a remote server). The tool is iperf version 3.
You can find some useful explanations and examples on this French site: https://iperf.fr/ But the version stays at 2 which does not have some amazing ne... [阅读全文]
备份与还原MySQL从服务器
上一节中我们介绍了如何在CentOS 7上配置MySQL的主从复制模式,今天Lesca将介绍如何备份和还原MySQL的从服务器,平台仍然是CentOS 7。
使用mysqldump进行备份和还原
使用mysqldump进行备份
mysqladmin stop-slave -uroot -p
mysqldump --all-databases > fulldb.dump
mysqladmin start-slave -uroot -p
tar -czf /tmp/dbdump.tar.gz ./fulldb.dump... [阅读全文]