上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 74 下一页

2019年4月10日

PowerShell 显示气球提示框 1

摘要: #加载 Winform 程序集,使用Out-Null抑制输出 [system.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms') | Out-Null #创建 NotifyIcon 对象 $balloon = New-O 阅读全文

posted @ 2019-04-10 15:10 遠離塵世の方舟 阅读(794) 评论(0) 推荐(0) 编辑

2019年3月31日

查看SQL Server的版本及License

摘要: select @@VERSION SELECT SERVERPROPERTY('LicenseType') as Licensetype, SERVERPROPERTY('NumLicenses') as LicenseNumber,SERVERPROPERTY('productversion') 阅读全文

posted @ 2019-03-31 22:06 遠離塵世の方舟 阅读(3443) 评论(0) 推荐(0) 编辑

How to extract a complete list of extension types within a directory?

摘要: Open the PowerShell Tool and Run the below command: Out put results: 统计指定目录下最大的20个文件: 阅读全文

posted @ 2019-03-31 22:01 遠離塵世の方舟 阅读(193) 评论(0) 推荐(0) 编辑

2019年3月22日

Wordpress无法连接Mysql8的问题

摘要: 安装了mysql 8.0.11 之后本地可以登录,但是远程第三方工具无法连接,本地安装的Wordpress在初始化时也连接失败。防火墙已经放通的, 解决之道: 首先登陆到mysql命令行: mysql -u root -p1进入之后选择mysql库,用户信息都存在这个库的user表中 use mys 阅读全文

posted @ 2019-03-22 00:45 遠離塵世の方舟 阅读(2918) 评论(0) 推荐(0) 编辑

What is `^M` and how do I get rid of it?

摘要: When I open the file in vim, I am seeing strange ^M characters. Unfortunately, the world's favorite search engine does not do well with special charac 阅读全文

posted @ 2019-03-22 00:31 遠離塵世の方舟 阅读(254) 评论(0) 推荐(0) 编辑

PHP测试Mysql数据库连接

摘要: 阅读全文

posted @ 2019-03-22 00:25 遠離塵世の方舟 阅读(5314) 评论(0) 推荐(0) 编辑

2019年3月20日

Mysql 8 常用命令测试

摘要: 1.创建数据库,帐号及授权 create database testdb; CREATE USER 'rusking'@'%' IDENTIFIED BY '12345678'; CREATE USER 'rusking'@'%' IDENTIFIED WITH mysql_native_passw 阅读全文

posted @ 2019-03-20 01:12 遠離塵世の方舟 阅读(1403) 评论(0) 推荐(0) 编辑

2019年3月19日

解决MySQL8.0报错:Unknown system variable 'validate_password_policy'

摘要: 一、问题描述 1、在安装MySQL8.0时,修改临时密码,因密码过于简单(如:123456),不符合MySQL密码规范,会触发一个报错信息: ERROR 1819 (HY000): Your password does not satisfy the current policy requireme 阅读全文

posted @ 2019-03-19 21:15 遠離塵世の方舟 阅读(19639) 评论(3) 推荐(0) 编辑

2019年3月16日

List or delete hidden files from command prompt(CMD)

摘要: In Windows, files/folders have a special attribute called hidden attribute. By setting this attribute, we can hide files from being displayed in explo 阅读全文

posted @ 2019-03-16 13:32 遠離塵世の方舟 阅读(2155) 评论(0) 推荐(0) 编辑

2019年3月15日

Reg 命令修改注册表

摘要: 首先要说明:编辑注册表不当可能会严重损坏您的系统。在更改注册表之前,应备份计算机上任何有价值的数据 只有在别无选择的情况下,才直接编辑注册表。注册表编辑器会忽略标准的安全措施,从而使得这些设置会降低性能、破坏系统,甚至要求用户重新安装Windows。可以利用“控制面板”或“Microsoft管理控制 阅读全文

posted @ 2019-03-15 01:23 遠離塵世の方舟 阅读(3378) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 74 下一页

导航