当前位置: 首页 » 教程

谷歌浏览器插件安装

谷歌浏览器插件安装,非谷歌应用商店安装的,直接将插件crx文件拉入浏览器,提示“程序包无效:”CRX_HEADER_INVALID””。解决方式:可以通过开发者模式安装1、进入扩展程序页面:点击谷歌浏览器右上角竖三点菜单–更多工具–扩展程序 — 开启开发者模式2、将下载的谷歌浏览器插件crx文件,将扩展名crx修改成rar,解压到一个文件夹3、在谷歌浏览器扩展页面中点击“加载已解压的扩展程序”–选择刚刚解压的插件文件夹4、谷歌浏览器插件已安装完成教程1个月前

WordPress非插件创建sitemap文件sitemap.xml和sitemap.html

sitemap.xml和sitemap.html,Sitemap 可方便网站管理员通知搜索引擎他们网站上有哪些可供抓取的网页。最简单的 Sitemap 形式,就是XML 文件,在其中列出网站中的网址以及关于每个网址的其他元数据(上次更新的时间、更改的频率以及相对于网站上其他网址的重要程度为何等),以便搜索引擎可以更加智能地抓取网站。WordPress非插件创建方法:1、在主题目录下 创建一个page页面文件,命名page-sitemap.php,代码:<?php/**Template Name: 站点地图*作者:零分*QQ :87087126*博客://blog.32xp.com*下载://www.32xp.com*生成站点地图HTML和XML**/$id=isset($wp_query->query_vars['id']) && $wp_query->query_vars['id']==1 ? true:false;if($id){header("Content-Type:text/xml");echo '<?xml version="1.0" encoding="utf-8"?>';$xml.='<urlset xmlns:xsi="//www.w3.org/2001/XMLSchema-instance" xmlns="//www.sitemaps.org/schemas/sitemap/0.9" xsi:schemaLocation="//www.sitemaps.org/schemas/sitemap/0.9 //www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">';$xml.='<url>';$xml.='<loc>'.get_bloginfo('url').'</loc>';$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";$xml.='<priority>0.8</priority>';$xml.='</url>';$xml.='<url>';$xml.='<loc>'.get_bloginfo('url').'/sitemap.html</loc>';$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";$xml.='<priority>0.8</priority>';$xml.='</url>';query_posts('showposts=30000');while (have_posts()) : the_post();$xml.='<url>';$xml.='<loc>'.get_the_permalink().'</loc>';$xml.="<lastmod>".date('Y-m-d H:i',get_the_time('U'))."</lastmod>";$xml.='<priority>0.8</priority>';$xml.='</url>';endwhile;wp_reset_query();foreach(get_categories() as $cat){$xml.='<url>';$xml.='<loc>'.get_category_link($cat->term_id).'</loc>';$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";$xml.='<priority>0.8</priority>';$xml.='</url>';}foreach(get_tags() as $tag){$xml.='<url>';$xml.='<loc>'.get_tag_link($tag->term_id).'</loc>';$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";$xml.='<priority>0.8</priority>';$xml.='</url>';}$xml.='</urlset>';echo $xml;}else{?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="//www.w3.org/1999/xhtml"><head profile="//gmpg.org/xfn/11"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title><?php bloginfo( "name" ); ?> - 站点地图</title><meta name="keywords" content="站点地图,<?php bloginfo( "name" ); ?>" /><meta name="generator" content="Baidu SiteMap Generator" /><meta name="author" content="LingFen" /><meta name="copyright" content="<?php bloginfo( "name" ); ?>" /><style type="text/css">body {font-family: Verdana;FONT-SIZE: 12px;MARGIN: 0;color: #000000;background: #ffffff;}img {border:0;}a{text-decoration:none;}a:hover{text-decoration:underline;}li {margin-top: 8px;}.page {padding: 4px; border-top: 1px #EEEEEE solid}.author {background-color:#EEEEFF; padding: 6px; border-top: 1px #ddddee solid}.tag a{display:inline-block;margin-right:10px;padding:3px 0;}#nav, #content, #footer {padding: 8px; border: 1px solid #EEEEEE; clear: both; width: 95%; margin: auto; margin-top: 10px;}</style></head><body vlink="#333333" link="#333333"><h2 style="text-align: center; margin-top: 20px"><?php bloginfo( "name" ); ?>&#39;s SiteMap </h2><center></center><div id="nav"><a href="<?php bloginfo( "url" ); ?>"><strong><?php bloginfo( "name" ); ?></strong></a> » <a href="<?php bloginfo( "url" ); ?>/sitemap.html">站点地图</a></div><div id="content"><h3>最新文章</h3><ul><?php query_posts('showposts=500');while (have_posts()) : the_post();?><li><a href="<?php the_permalink(); ?>" title="<?php the_title();?>" target="_blank"><?php the_title();?></a></li><?php endwhile;wp_reset_query();?></ul></div><div id="content"><h3>分类目录</h3><ul><?php foreach(get_categories() as $cat){ if($cat->parent==0){?><li><a target="_blank" href="<?php echo get_category_link($cat->term_id);?>" title="<?php echo $cat->name;?>"><?php echo $cat->name;?></a><?php foreach(get_categories() as $ccat){ if($ccat->parent==$cat->term_id){?><ul><li><a target="_blank" href="<?php echo get_category_link($ccat->term_id);?>" title="<?php echo $ccat->name;?>"><?php echo $ccat->name;?></a></li></ul><?php } } ?></li><?php } } ?></ul></div><div id="content" class="tag"><h3>TAG标签</h3><?php wp_tag_cloud('number=500&unit=px');?></div><div id="footer">查看首页: <strong><a href="<?php bloginfo( "url" ); ?>"><?php bloginfo( "name" ); ?></a></strong></div><br /><center><div style="text-algin: center; font-size: 11px"><strong><a href="<?php bloginfo( "url" ); ?>/sitemap.html">SiteMap.html</a><a href="<?php bloginfo( "url" ); ?>/sitemap.xml">SiteMap.xml</a></strong>&nbsp;&nbsp; Latest Update: <?php echo date("Y-m-d H:i:s",time());?><br /><br /></div></center><center><div style="text-algin: center; font-size: 11px">Powered by <strong><a href="<?php bloginfo( "url" ); ?>" target="_blank">Baidu SiteMap Generator</a></strong>&nbsp;© 2008-<?php echo date("Y",time());?> <a target="_blank" href="<?php bloginfo( "url" ); ?>" title="零分">零分</a><br /><br /></div></center></body></html><?php }?>2、在WordPress后台创建一个页面文件,选择模板站点地图3、设置伪静态,在functions.php添加设置伪静态函数add_filter( 'rewrite_rules_array','my_insert_rewrite_rules' );add_filter( 'query_vars','my_insert_query_vars' );add_action( 'wp_loaded','my_flush_rules' );// flush_rules() if our rules are not yet includedfunction my_flush_rules(){$rules = get_option( 'rewrite_rules' );if ( ! isset( $rules['sitemap.xml'] ) || ! isset( $rules['sitemap.html'] ) ) {global $wp_rewrite;$wp_rewrite->flush_rules();}}// Adding a new rulefunction my_insert_rewrite_rules( $rules ){$newrules = array();$newrules['sitemap.xml$'] = 'index.php?pagename=sitemap&id=1';$newrules['sitemap.html$'] = 'index.php?pagename=sitemap&id=$matches[1]';return $newrules + $rules;}function my_insert_query_vars( $vars ){array_push($vars, 'id');return $vars;}代码已打包百度网盘下载:WordPress-sitemap(提取码:b8rh,大小:34.1kb)教程1个月前

QQ离线文件暂存在哪里

有时候,发了离线文件,忘记接了?忽略了?文件不小心被删除了?等等,种种原因,今天就遇到过了,找消息记录又得翻来翻去,其实,可以到离线助手里找文件,离线文件有暂存7天,在7天内都可以到离线助手里找的!PS端,打开QQ界面–主菜单–工具–文件助手,点击打开,里面就是暂存的文件,接收的,发送的,离线的,都有!一天又2G流量!会员更高,这个就不用说了!教程1个月前

多多进宝PHP版服务端SDK导入说明记录

## 拼多多开放平台PHP版本的SDK- 环境要求:php 5.5版本及以上,使用composer包管理工具- 执行一下 composer install 安装命令- 该SDK使用 composer 对src下面的代码进行命名空间自动导入,namespace 自动导入的规则是[psr4 规范](https://www.php-fig.org/psr/psr-4/)- 该SDK共有2个文件夹,src文件夹下面是sdk主功能文件夹。example文件夹下面是所有接口的demo,作为测试样例参考。## src文件夹下面文件功能说明* PopAccessTokenClient 类- generate : 根据从授权后回调地址那里拿到的code 值,然后去服务器获取access_token和refresh_token以及过期时间等值- refresh:由于access_token时效性是24小时,refresh_token的时效性是30天,所以,当acces_token过期后,利用refresh_token进行重新获取access_token* PopHttpClient 类- syncInvoke : 把接口名称 type 以及各自接口对应的业务参数,access_token(如果需要授权)传给这个接口即可获取到对应接口的返回值。* Api/Request- 这个文件夹下面存放所有接口的自定义请求Request类* Common- 这个文件夹下面存放所有的公共功能类* Token- 这个文件夹下面存放获取和刷新token相关接口的request说明文档,下载到本地,安装composer,进入SDK文件夹,执行一下 composer install 安装命令文件夹中多出一个vendor,将vendor,src,example 上传到服务器。composer.json和composer.lock,也可以一起上传!example内是demo演示文档,也可以稍微处理下做JSON数据!查看电脑是否安装composer,打开CMD输入composer,出现下图,说明已安装命令:打开CMD,Windows+R,输入CMD进入指定盘,如D盘,在CMD框内输入:D:进入文件夹 cd 文件夹路径。教程1个月前

wordrpess添加主题设置

wordpress添加主题设置选项$themename = "32xp";    //主题名称   $shortname = "32xp";    //主题简写,必须是英文、数字、下划线组合   function mytheme_page (){           if ( count($_POST) > 0 && isset($_POST['mytheme_settings']) ){               $options = array ('keywords','description','tongji','announcement','logourl','beian');               foreach ( $options as $opt ){                   delete_option ( 'mytheme_'.$opt, $_POST[$opt] );                   add_option ( 'mytheme_'.$opt, $_POST[$opt] );                  }           }           add_theme_page(__('32XP主题设置'), __('32xp主题设置'), 'edit_themes', basename(__FILE__), 'mytheme_settings');       }       function mytheme_settings(){?>     <style type="text/css">   ruby {   font-size:60px;   color:red;   font-family:微软雅黑;   }   .tab {   border:solid 1px;   border-color:#aaa;   width:960px;   margin:10px auto auto 10px;   text-align:left;   }   .hd {     height:25px;   width:100%;   border-bottom:solid 1px;   border-color:#aaa;   }   .hd ul {   padding:0;   margin:0;   height:26px;   overflow: hidden;   }   .hd .nomal {   font-size:14px;   height:26px;   line-height:25px;   float:left;   width:24%;   text-align:center;   border-right:solid 1px;   border-color:#aaa;   cursor:pointer;   list-style:none;   }   .hd .activeTab {   color:#2481C6;   font-weight: bold;     }   #content {   padding:20px 10px;   }                .wrap{margin: 5px 15px 0 50px;width: 600px;}           fieldset{width:100%;border:1px solid #aaa;padding-bottom:10px;margin-top:5px;-webkit-box-shadow:rgba(0,0,0,.2) 0px 0px 5px;-moz-box-shadow:rgba(0,0,0,.2) 0px 0px 5px;box-shadow:rgba(0,0,0,.2) 0px 0px 5px;}           legend{margin-left:5px;padding:0 5px;color:#2481C6;cursor:pointer;}           textarea{width:100%;font-size:11px;border:1px solid #aaa;background:none;-webkit-box-shadow:rgba(0,0,0,.2) 1px 1px 2px inset;-moz-box-shadow:rgba(0,0,0,.2) 1px 1px 2px inset;box-shadow:rgba(0,0,0,.2) 1px 1px 2px inset;-webkit-transition:all .4s ease-out;-moz-transition:all .4s ease-out;}           textarea:focus{-webkit-box-shadow:rgba(0,0,0,.2) 0px 0px 8px;-moz-box-shadow:rgba(0,0,0,.2) 0px 0px 8px;box-shadow:rgba(0,0,0,.2) 0px 0px 8px;outline:none;}          </style>   <script src="<?php bloginfo('template_url');?>/js/jquery-1.6.4.min.js"></script>   <script type="text/javascript">   function tabClick(){   if($(this).hasClass('activeTab'))    return;   $('.hd ul li').removeClass('activeTab');   $(this).addClass('activeTab');   var tabId = $(this).attr('tabId');   $('#content > div').hide();   $('#' + tabId).show();   }   $(document).ready(function(){   $('.hd ul li').click(tabClick);   })   </script>           <form method="post" action="">     <div style="height:40px;line-height:40px;font-size:26px;font-weight: bold;">32XP主题设置</div>     <div class="tab">   <div class="hd">   <ul>   <li class="nomal activeTab" tabId="content1">SEO设置</li>   <li class="nomal"  tabId="content2">首页设置</li>   <li class="nomal"  tabId="content3">幻灯片设置</li>   <li class="nomal"  tabId="content4">其他设置</li>   </ul>   </div>   <div id="content">   <div id="content1" style="display:block;">       <!--SEL设置-->            <fieldset>           <legend><strong>SEO设置</strong></legend>               <table class="form-table">                   <tr><td>       <span>网站关键词(Meta Keywords),中间用半角逗号隔开。</span>                   <textarea name="keywords" id="keywords" rows="1" cols="70"><?php echo get_option('mytheme_keywords'); ?></textarea><br />               </td></tr>               <tr><td>           <span>网站描述(Meta Description),针对搜索引擎设置的网页描述。</span>                   <textarea name="description" id="description" rows="3" cols="70"><?php echo get_option('mytheme_description'); ?></textarea>               </td></tr>                <tr><td>     <span>网站统计代码</span>                   <textarea name="tongji" id="tongji" rows="3" cols="70"><?php echo stripslashes(get_option('mytheme_tongji')); ?></textarea>               </td></tr>                              <tr><td>     <span>网站备案号</span>                   <textarea name="beian" id="beian" rows="1" cols="70"><?php echo stripslashes(get_option('mytheme_beian')); ?></textarea>               </td></tr>                          </table>       </fieldset>           <p class="submit">               <input type="submit" name="Submit" class="button-primary" value="保存设置" />               <input type="hidden" name="mytheme_settings" value="save" style="display:none;" />           </p>              <!--SEL设置-->             </div>   <div id="content2" style="display:none;">   首页设置   </div>   <div id="content3" style="display:none;">   幻灯片设置   </div>   <div id="content4" style="display:none;">   其他设置   </div>   </div>   </div>        </form>   <?php }     add_action('admin_menu', 'mytheme_page');   效果:教程1个月前

css动画animation

使用简写属性,将动画与 div 元素绑定:div{animation:mymove 5s infinite;-webkit-animation:mymove 5s infinite; /* Safari 和 Chrome */}@keyframes mymove{from {left:0px;}to {left:200px;}}简单例子, 1、一直循环旋转@keyframes xz {from {transform:rotate(0deg);}to {transform:rotate(360deg);}}.div{width:128px;height:128px;animation:xz 2s linear 0s infinite normal;}2、鼠标经过一直旋转.div2,.div4{width:128px;height:128px;}animation属性;animation: name duration timing-function delay iteration-count direction;animation-name 规定需要绑定到选择器的 keyframe 名称。。animation-duration 规定完成动画所花费的时间,以秒或毫秒计。animation-timing-function 规定动画的速度曲线。animation-delay 规定在动画开始之前的延迟。animation-iteration-count 规定动画应该播放的次数。animation-direction 规定是否应该轮流反向播放动画。教程1个月前

电脑上如何查看某个软件链接的服务器IP

公司服务器挂了,重新购买了某个配件,替换之后,发现外网的EPR系统链接不上公司的服务器,为了验证一下EPR软件链接的服务器IP是否是公司服务器的IP,百度了一下,可以通过任务管理器来查看某个软管链接的服务器IP。win7,win10,相信win8 也是一样。打开任务管理器,切换到性能选项,打开资源监视器,找到某个软件的进程,可以查看软管的服务器IP,端口等!通过软件的链接服务器IP和内网对应的服务器IP对比,排除是否因为内网穿透的原因导致无法链接上服务器!教程1个月前

wordpress通过分类id获取分类名称get_cat_name

wordpress已知分类ID获取分类信息获取分类名称:get_cat_name<?php echo get_cat_name( $catid );?>获取分类链接:get_category_link<?php echo get_category_link( $catid );?>获取分类描述:category_description<?php echo category_description( $catid ); ?>教程2个月前

wordpress获取最新文章query_posts

wordpress获取最新文章query_posts:<?phpquery_posts('showposts=10');while (have_posts()) : the_post();?><a rel="bookmark" target="_blank" title="<?php the_title(); ?>" href="<?php the_permalink() ?>"><?php the_title(); ?></a><?php endwhile;?>query_posts其他参数:1、Category Parameters(文章分类参数)<?php//仅显示分类编号为4的文章(包括子分类文章)query_posts(‘cat=4′);//仅显示分类名称为Codex的文章(包括子分类文章)query_posts(‘category_name=Codex ‘);//显示多个分类内的文章(包括各子分类文章)query_posts(‘cat=2,6,17,38′);//除了分类编号为3的文章(包括子分类文章),其他文章都显示query_posts(‘cat=-3′);//显示同时有分类编号为2及6的文章query_posts(array(‘category__and’ => array(2,6)));//显示分类编号为6的文章(但不包括子分类文章)query_posts(array(‘category__in’ => array(6)));//除了分类编号为2及6的文章,子分类及其他分类文章都显示query_posts(array(‘category__not_in’ => array(2,6)));?>2、Tag Parameters(标签参数)<?php//仅显示标签带有cooking的文章query_posts(‘tag=cooking’);//仅显示标签带有bread或baking的文章query_posts(‘tag=bread,baking’);//仅显示标签带有bread及baking及recipe的文章query_posts(‘tag=bread+baking+recipe’);//仅显示标签带有编号37及47的文章query_posts(array(‘tag__and’ => array(37,47));//仅显示标签带有编号37或47的文章query_posts(array(‘tag__in’ => array(37,47));//仅显示标签不带有编号37或47的文章query_posts(array(‘tag__not_in’ => array(37,47));?>3、Author Parameters(作者参数)<?php//仅显示作者编号为3的文章query_posts(‘author=3′);//仅显示作者编号不为3的文章query_posts(‘author=-3′);//仅显示作者名称为Harriet的文章query_posts(‘author_name=Harriet’);?>4、Sticky Post Parameters(置顶文章参数)<?php//仅显示置顶文章array(‘post__in’=>get_option(‘sticky_posts’))//将文章的置顶属性清除掉,以正常文章顺序排序(例如发表日期)显示出来caller_get_posts=1 //显示文章,但不显示置顶文章。query_posts(array(“post__not_in” =>get_option(“sticky_posts”)));//显示分类编号为6的文章、每页显示3 篇文章,并且将此分类下文章的置顶属性清除掉,以正常文章顺序排序(例如发表日期)显示出来。query_posts(‘cat=6&posts_per_page=3&caller_get_posts=1′);?>5、Post & Page Parameters(文章& 分页参数)<?php//显示文章编号为27的文章‘p’ => 27//显示文章代称为about-my-life的文章‘name’ => ‘about-my-life’//显示分页编号为7的分页‘page_id’ => 7//显示分页代称为about的分页‘pagename’ => ‘about’//当文章超过5篇时就仅显示5篇文章并且搭配换页程式码显示换页连结,设为-1则不换页全部显示。‘posts_per_page’ => 5//当设定为6时就显示6篇文章,设为-1则显示范围内的全部文章。‘showposts’ => 6//仅显示文章编号为5,12,2,14,7的这5篇文章‘post__in’ => array(5,12,2,14,7)//仅显示文章编号不为5,12,2,14,7的其他全部文章‘post__not_in’ => array(6,2,8)//显示文章类型为分页的文章,预设值为post (文章),可以使用的数值有attachment(媒体档页面), page(分页), post(文章),或revision(修订)。‘post_type’ => ‘page’//显示文章状态为公开性质的文章,可以使用的数值有pending(审核中), draft(草稿), future(排程), private(私人), trash(垃圾) 。‘post_status’ => ‘publish’//显示文章范围内的第93页‘post_parent’ => 93?>6、Time Parameters(时间参数)<?php//显示12月20日发表的文章列表。query_posts(‘monthnum=12&day=20′);//显示本周发表文章列表。$week = date(‘W’);$year = date(‘Y’);query_posts(‘year=’ . $year .‘&w=’ .$week );//显示最近30天内发表的文章列表。function filter_where($where = ”) {$where .= ” AND post_date > ‘” . date(‘Ym-d’, strtotime(‘-30 days’)) . “‘”;return $where;}add_filter(‘posts_where’, ‘filter_where’);query_posts($query_string);?>7、Orderby Parameters(排列顺序参数)<?php//依照发表作者排列orderby=author//依照日期排列orderby=date//依照标题排列orderby=title//依照最后编辑时间排列orderby=modified//依照分页顺序排列(仅适用于分页)orderby=menu_order// (不知道XD…)orderby=parent//依照文章编号排列orderby=ID//随机排列orderby=rand//依照自订栏位数值排列orderby=meta_value//依照预设排列orderby=none//依照回响数排列orderby=comment_count?>8、Pagination Parameters(分页参数)<?php//当值设定true时则为不分页显示,直接显示全部文章nopaging=true//显示每页文章显示10篇posts_per_page=10//页数,例如当设定为6时则就表示跳到第6页paged=6//排列顺序,ASC为按时间顺序排列文章,若是DESC则是反向显示文章order=ASC?>9、组合运用范例<?phpquery_posts(‘cat=3&year=2004′);?>显示分类编号为1及3且每页显示两篇、依照标题逆向排列的文章。<?phpquery_posts(array(‘category__and’=>array(1,3),‘posts_per_page’=>2,‘orderby’=>title,‘order’=>DESC));?>仅在首页显示,并且是在分类编号为13的当月发表文章。<?phpif (is_home()) {query_posts($query_string . ‘&cat=13&monthnum=’ . date(‘n’,current_time(‘timestamp’)));}?>显示分类编号为1且标签为apples的文章。<?phpquery_posts(‘cat=1&tag=apples’);?>官方文档:点击去看看教程2个月前

window10安装APPX文件及微软官方HEVC/H265解码扩展

剪映导出HEVC/H265编码格式的MP4,播放只有声音,原来缺乏HEVC/H265编码扩展!下载的扩展格式是.Appx,一些电脑可以直接双击安装,如果无法安装可以通过PowerShell安装。设置–更新与安全–开发者选项–PowerShell,点击显示设置弹出命令框中输入命令,回车Add-AppxPackage 路径如:Add-AppxPackage D:\LenovoUtility.appx其他命令:1. Add-AppxPackage用途:安装一个appx程序包。语法:Add-AppxPackage [–DependencyPath <</span>依赖的包路径>]举例:Add-AppxPackage D:\AppxSource\MyAppx.appx2. Add-AppxProvisionedPackage用途:设置应用程序到计算机。举例:Add-AppxProvisionedPackage -Online -FolderPath D:\Appx说明:将应用程序设置到计算机,所有的用户都将默认安装此APPX包。3. Get-AppxPackage用途:获取应用程序清单举例:#获取所有用户安装的APPX包Get-AppxPackage -AllUsers#获取指定域下面的指定用户的指定包Get-AppxPackage -Name Package1 -User domain\username4. Get-AppxPackageManifest用途:获取应用程序包的详细信息举例:Get-AppxPackageManifest -Package Package15. Remove-AppxPackage用途:卸载一个appx程序包。语法:Remove-AppxPackage <</span>包名>举例:Remove-AppxPackage MyAppx6. Remove-AppxProvisionedPackage用途:移除计算机对包的设置举例:Remove-AppxProvisionedPackage -Online -PackageName MyAppxPkg说明:移除之后,新建用户不再安装此包,已经安装此包的用户,不会被删除。使用例子:复制代码 代码如下:#安装一个appx应用add-appxpackage C:\app1.appx –DependencyPath C:\winjs.appx#删除一个appx应用Remove-AppxPackage Package1#删除包设置Remove-AppxProvisionedPackage -Online -PackageName MyAppxPkg附HEVC/H265解码扩展下载:(百度网盘,提取码:5jcr)教程2个月前
零分站龄16年资深站长
一个喜欢折腾,却又折腾不出像样东西的,不会PHP的PHP程序员!
2020
文章
13
分类
3233
标签
3
友链
onlinelovesky317355746vipsever@vip.qq.com