04 2022 档案
摘要:https://www.cnblogs.com/lei0213/p/7506130.html
阅读全文
摘要:1、Split-Merge-File.ps1 脚本转自: https://www.cnblogs.com/qiushuiblog/p/11510896.html 修改了第134行代码,完整代码如下: # Obtain a suitable buffer length by partial file
阅读全文
摘要:GetUsersNums.ps1 代码 $num=(iex "query user").Count-1 $time=(Get-Date).ToString('yyyy-MM-dd HH:mm:ss') ($time+","+$num)|Out-File -Append "GetUsers.txt"
阅读全文
摘要:App.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="a1" value="a1_result"/> <add key="a2" value="a2_result"/> <
阅读全文
摘要:方法一 @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
阅读全文
摘要:表格设计工具 Microsoft Visual Studio 2012 表格居中 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格居中</title> <style> table { border-collapse: col
阅读全文
摘要:###Selenium 控制 Chrome from selenium import webdriver from selenium.webdriver.chrome.service import Service import time s = Service(r"C:\Users\Administ
阅读全文
摘要:以安装streamlit为例 只下载不安装,命令如下 pip3 download -d g:\1\ streamlit 忽略依赖安装 pip3 install --no-deps *
阅读全文
摘要:https://zhuanlan.zhihu.com/p/342686109
阅读全文
摘要:python3 import os from glob import glob import subprocess as sp class PowerShell: # from scapy def __init__(self, coding, ): cmd = [self._where('Power
阅读全文