摘要: # 指定要搜索的文件夹路径和正则表达式关键字 $folderPath = "C:\myapp1\","C:\myapp2\" $table_list = "tblBOM,tblTest" $tables = $table_list.Split(',') foreach ($table in $tab 阅读全文
posted @ 2024-02-26 08:59 Ender.Lu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 127.0.0.1 red-gate.com 127.0.0.1 www.red-gate.com 127.0.0.1 licensing.red-gate.com 127.0.0.1 productlogin.red-gate.com HOSTS文件路径:C:\Windows\System32\d 阅读全文
posted @ 2024-01-30 17:28 Ender.Lu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 没开K3CloudManager服务 关联站点列表为空或显示不全 https://vip.kingdee.com/questions/135435095930145113/answers/135435142151375121?productLineId=1&isKnowledge=2 https:/ 阅读全文
posted @ 2024-01-26 09:29 Ender.Lu 阅读(22) 评论(0) 推荐(0) 编辑
摘要: "C:\Program Files (x86)\Google\Chrome109\Application\chrome.exe" --user-data-dir="C:/Program Files (x86)/Google/UserData/109" "C:\Program Files (x86)\ 阅读全文
posted @ 2024-01-16 17:11 Ender.Lu 阅读(17) 评论(0) 推荐(0) 编辑
摘要: <appSettings> <add key ="CustomLoginUI" value="ZQWCustomLoginUI.ZQWLoginV1,ZQWCustomLoginUI" /> <add key ="AllowCustomUseDefLoginUI" value="true" /> < 阅读全文
posted @ 2024-01-09 15:24 Ender.Lu 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、打开WebSite\App_Data\Common.config,修改appSettings,设置IsEnablePlugInHotUpdate为true,重启IIS; 若appSetting中没有IsEnablePlugInHotUpdate,可自行添加; <!--是否启用插件热更新(开发时启 阅读全文
posted @ 2023-08-04 09:25 Ender.Lu 阅读(32) 评论(0) 推荐(0) 编辑
摘要: # Define the folder path to monitor $folder = 'C:\Downloads' # Define the filter for the type of files to monitor $filter = '*.*' # Define the options 阅读全文
posted @ 2023-05-03 16:05 Ender.Lu 阅读(27) 评论(0) 推荐(0) 编辑
摘要: use [Db1] ALTER DATABASE [Db1] SET RECOVERY SIMPLE WITH NO_WAIT DBCC SHRINKFILE([Db1_Log], 1) ALTER DATABASE [Db1] SET RECOVERY FULL WITH NO_WAIT go 阅读全文
posted @ 2023-05-03 08:47 Ender.Lu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: sp_configure 'max text repl size', -1 go exec sp_configure 'allow updates', 0 go RECONFIGURE go --exec sys.sp_configure 'allow updates' 阅读全文
posted @ 2023-04-27 08:08 Ender.Lu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Add-Type -AssemblyName System.Windows.Forms.DataVisualization # 定义画反抛物线的函数 function Plot-DoubleParabola { param( [double]$a, [double]$b, [double]$c ) 阅读全文
posted @ 2023-04-25 17:11 Ender.Lu 阅读(41) 评论(0) 推荐(0) 编辑