上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: App.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="a1" value="a1_result"/> <add key="a2" value="a2_result"/> < 阅读全文
posted @ 2022-04-18 22:23 shenshu 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 方法一 @echo off if not exist "c:\a\b\c\abc123.exe" (goto tagA) else (goto tagB) :tagA echo doing A..... goto end :tagB echo doing B..... goto end :end e 阅读全文
posted @ 2022-04-15 08:48 shenshu 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 表格设计工具 Microsoft Visual Studio 2012 表格居中 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格居中</title> <style> table { border-collapse: col 阅读全文
posted @ 2022-04-12 10:02 shenshu 阅读(81) 评论(0) 推荐(0) 编辑
摘要: ###Selenium 控制 Chrome from selenium import webdriver from selenium.webdriver.chrome.service import Service import time s = Service(r"C:\Users\Administ 阅读全文
posted @ 2022-04-12 08:42 shenshu 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 以安装streamlit为例 只下载不安装,命令如下 pip3 download -d g:\1\ streamlit 忽略依赖安装 pip3 install --no-deps *.whl 阅读全文
posted @ 2022-04-08 19:06 shenshu 阅读(246) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/342686109 阅读全文
posted @ 2022-04-08 13:21 shenshu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: python3 import os from glob import glob import subprocess as sp class PowerShell: # from scapy def __init__(self, coding, ): cmd = [self._where('Power 阅读全文
posted @ 2022-04-01 11:44 shenshu 阅读(1557) 评论(0) 推荐(0) 编辑
摘要: @echo off for %%i in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) do (if exist %%i:\ (dir %%i:\ /s /b /a-D|find /I "spring-beans")) 阅读全文
posted @ 2022-03-31 14:15 shenshu 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 实验环境 域账号zhangsan、lisi 域用户组group1中有zhangsan、lisi 共享主机目录结构: d:\share\profiles\lisi d:\share\profiles\zhangsan 共享文件夹profiles 实验目的 用户zhangsan只能在共享目录profil 阅读全文
posted @ 2022-03-29 11:16 shenshu 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 使用C#中的List<T> $objlist=New-Object System.Collections.Generic.List[System.String] $objlist.Add("Hello") $objlist.Add("World") foreach ($item in $objlis 阅读全文
posted @ 2022-03-13 13:26 shenshu 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页