摘要:
Let's say, configuration list in config.ini is as:abc=abca=alocalpath=D:\local\pathTo read the key-value, we create a test.bat:@echo offsetlocal enabl... 阅读全文
摘要:
SQL Database Engine: TCP 1433 & UDP 1434 SQL Analysis Service: TCP 2383 (2382 if named instance) Windows Firewall with Advanced Security On Windows 7 or Windows Vista, in Control Panel, click Syst... 阅读全文
摘要:
Process cube的时候遇到如下错误. Errors in the high-level relational engine. The following exception occurred while the managed IDbConnection interface was being used: Login failed for user xxx 解决这个问题的步... 阅读全文
摘要:
就这么写: Random rand = new Random((int)DateTime.Now.Ticks); 或者这么写:
Random rand = new Random(new Guid().GetHashCode()); 然后用.Next()方法取到int数。.Next()方法可以指定上下边界,包括lower边界,不包括upper边界。
更多信息请访问: https://msdn.m... 阅读全文
摘要:
Windows下PowerShell默认的权限级别是Restricted,不允许执行PS脚本(即.ps1文件)。如果在Restricted权限级别下运行,会得到错误信息: .\XXXX.ps1 : File XXXX.ps1 cannot be loaded because running scripts is disabled on this system. For more infor... 阅读全文
摘要:
在batch脚本中我们可以通过下面的语句来对日期进行操作: SET YEAR=%date:~10,4%
SET MONTH=%date:~4,2%
SET DAY=%date:~7,2%
SET HOUR=%time:~0,2%
IF "%HOUR:~0,1%"==" " SET HOUR=0%HOUR:~1,1%
SET MINUTE=%time:~3,2%
SET SECOND=%time:~... 阅读全文