摘要: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager]"PendingFileRenameOperations"=- 阅读全文
posted @ 2023-04-29 17:09 剑小秀 阅读(19) 评论(0) 推荐(0)
摘要: cmd.exe /c echo Y|PowerShell.exe -NoProfile -Command Clear-RecycleBin 阅读全文
posted @ 2023-04-29 17:08 剑小秀 阅读(437) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-04-29 17:05 剑小秀 阅读(169) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Security.Cryptography; using System.IO; us 阅读全文
posted @ 2023-04-29 17:00 剑小秀 阅读(46) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; using System 阅读全文
posted @ 2023-04-29 16:59 剑小秀 阅读(30) 评论(0) 推荐(0)
摘要: 一、准备工作1 Visual Studio 2015 必须有相关的打包组件;2 Visual Studio的打包组件有 InstallShield 和 Visual Studio Installer Projects (安装包:VSI_bundle)组件;3 Visual Studio Instal 阅读全文
posted @ 2023-04-29 09:51 剑小秀 阅读(5760) 评论(0) 推荐(0)
摘要: 直接执行以下SQL语句即可。 Restore database [dbname] with recovery 阅读全文
posted @ 2023-04-25 08:56 剑小秀 阅读(19) 评论(0) 推荐(0)
摘要: 右键项目-添加新项 改变UAC规则的level属性为 requireAdministrator,保存重新生成即可 阅读全文
posted @ 2023-04-23 08:41 剑小秀 阅读(18) 评论(0) 推荐(0)
摘要: 1. 安装Visual Studio Installer Project 1.1 vs2022中-->扩展-->联机-->搜索Microsoft Visual Studio Installer Project 2.右键解决方案-->新增项目-->选择Setup Project 2.1 项目右键 -- 阅读全文
posted @ 2023-04-21 17:39 剑小秀 阅读(699) 评论(0) 推荐(0)
摘要: CREATE FUNCTION fn_ConvertBinaryIPAddressToString ( @binaryIP varbinary(16) ) RETURNS nvarchar(39) AS BEGIN DECLARE @ipAsString nvarchar(39) -- Is IPv 阅读全文
posted @ 2023-04-17 08:18 剑小秀 阅读(138) 评论(0) 推荐(0)