摘要: # 设置要遍历的根文件夹路径,你可以根据实际情况修改这个路径$rootFolder = "C:\script\dlls" # 获取该文件夹及其子文件夹下所有的.dll文件$dllFiles = Get-ChildItem -Path $rootFolder -Filter "*.dll" -Recu 阅读全文
posted @ 2024-12-06 21:06 Ender.Lu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: public class EventHandlerHelper { public static Delegate GetEventDelegate(RoutedEventHandlerInfo[] rehis, string method_name) { foreach (RoutedEventHa 阅读全文
posted @ 2024-10-23 09:41 Ender.Lu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: SET QUOTED_IDENTIFIER ON; SET ANSI_NULLS ON; GO CREATE PROCEDURE p_AlterColumn @TableName VARCHAR(50), @ColumnName VARCHAR(50), @ColumnType VARCHAR(50 阅读全文
posted @ 2024-08-08 09:38 Ender.Lu 阅读(56) 评论(0) 推荐(0) 编辑
摘要: FrameworkElement obj = ControlHelper.SearchControls(Application.Current.MainWindow, "__watermark__"); if (obj != null) { (obj as Grid).Children.Clear( 阅读全文
posted @ 2024-07-19 14:41 Ender.Lu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Add-Type -AssemblyName System.IO.Compression Add-Type -AssemblyName System.IO.Compression.FileSystem # 设置源文件夹和目标日志文件的路径 $sourceFolder = "C:\myapp\bin" 阅读全文
posted @ 2024-07-05 08:14 Ender.Lu 阅读(14) 评论(0) 推荐(0) 编辑
摘要: # 指定要搜索的文件夹路径和正则表达式关键字 $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 阅读(154) 评论(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:27 Ender.Lu 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 没开K3CloudManager服务 关联站点列表为空或显示不全 https://vip.kingdee.com/questions/135435095930145113/answers/135435142151375121?productLineId=1&isKnowledge=2 https:/ 阅读全文
posted @ 2024-01-26 09:29 Ender.Lu 阅读(64) 评论(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 阅读(41) 评论(0) 推荐(0) 编辑
摘要: <appSettings> <add key ="CustomLoginUI" value="ZQWCustomLoginUI.ZQWLoginV1,ZQWCustomLoginUI" /> <add key ="AllowCustomUseDefLoginUI" value="true" /> < 阅读全文
posted @ 2024-01-09 15:24 Ender.Lu 阅读(13) 评论(0) 推荐(0) 编辑