导航

随笔分类 -  软件工具

1

摘要:一个Eclipse骨灰级开发者总结了他认为最有用但又不太为人所知的快捷键组合。通过这些组合可以更加容易的浏览源代码,使得整体的开发效率和质量得到提升。 1. ctrl+shift+r:打开资源 这可能是所有快捷键组合中最省时间的了。这组快捷键可以让你打开你的工作区中任何一个文件,而你只需要按下文件名... 阅读全文

posted @ 2015-02-27 11:13 FryFish 阅读(151) 评论(0) 推荐(0)

摘要:转自:http://www.360doc.com/content/11/0411/17/5718989_108872989.shtml参见:http://www.cnblogs.com/bearhb/archive/2012/07/03/2574206.html另外,这篇文章《SSL证书生成方法》介... 阅读全文

posted @ 2015-02-11 15:04 FryFish 阅读(711) 评论(0) 推荐(0)

摘要:转自:http://blog.csdn.net/cnbird2008/article/details/8452205参见:Chef Infrastructure Automation Cookbook (英文版) -http://download.csdn.net/download/gattaca2... 阅读全文

posted @ 2015-01-19 13:15 FryFish 阅读(789) 评论(0) 推荐(0)

摘要:Apache:如果采用RPM包安装,安装路径应在 /etc/httpd目录下apache配置文件:/etc/httpd/conf/httpd.confApache模块路径:/usr/sbin/apachectl web目录:/var/www/html 如果采用源代码安装,一般默认安装在/usr/... 阅读全文

posted @ 2015-01-09 14:30 FryFish 阅读(116) 评论(0) 推荐(0)

摘要:Each Linux instance type launches with a default Linux system user account. For Amazon Linux, the user name is ec2-user. For RHEL5, the user name is e... 阅读全文

posted @ 2014-12-09 13:41 FryFish 阅读(222) 评论(0) 推荐(0)

摘要:转自:http://blog.csdn.net/winnyrain/article/details/17141331---------------------------------------------------在混淆的时候报错了,错误描述大致如下:Could not find a compa... 阅读全文

posted @ 2014-11-01 23:52 FryFish 阅读(308) 评论(0) 推荐(0)

摘要:TFS命令必须在VS命令提示环境中执行,打开方式为:开始->程序->Microsoft Visual Studio 2010->Visual Studio Tools->Visual Studio 命令提示1. 查看全部TFS工作区tf workspaces2. 强行撤销其他用户挂起的更改tf undo /workspace:{工作区};{域名}\用户名:{用户工作区编号} $/{tfs服务器文件路径}/{文件名}如:tf undo /workspace:gzo_peter;guangzhou\petershen:4 $/test/doc/接口2.0.doc3. 删除工 阅读全文

posted @ 2014-03-13 23:42 FryFish 阅读(807) 评论(0) 推荐(0)

摘要:Two ways to do that:I. Separate the exe from the argumentsDo all your dynamic stuff for the arguments, but call the exe as normal with the variable holding the arguments afterward:$argument= '"D:\spaced path\HelloWorld.txt"'$exe = 'notepad'&$exe $argument#ornotepad $arg 阅读全文

posted @ 2014-03-10 13:10 FryFish 阅读(434) 评论(0) 推荐(0)

摘要:Windows PowerShell ISE是一项可选功能,它需要预先安装 .Net Framework 3.51。要在Windows Server 2008 R2中安装Windows PowerShell ISE,可运行增加功能向导,或执行如下PowerShell命令:Import-Module ServerManager; Add-WindowsFeature PowerShell-ISE参考:http://technet.microsoft.com/en-us/library/dd759217.aspx 阅读全文

posted @ 2014-02-10 10:16 FryFish 阅读(714) 评论(0) 推荐(0)

摘要:If SkyDrive Pro stops working。As for now, the only solution is to clear the SkyDrive Pro cache, and re-sync your library. So you will lose all settings.To clear your cache, close all your Office processes like groove.exe (which is SkyDrive Pro), msouc.exe, msosync.exe, office library sync,…Browse to 阅读全文

posted @ 2014-01-20 20:09 FryFish 阅读(296) 评论(0) 推荐(0)

摘要:原文标题:Force Removal of Exchange Server – Remove Exchange 2010 Manually (适用:Exchange 2007 / 2010 & 2013)January 11, 2013 Written by aasim---------------------If you want to be the best at something you gotta start somewhere, get stuck somewhere & find your way out.Today I am going to show you 阅读全文

posted @ 2014-01-09 18:08 FryFish 阅读(266) 评论(0) 推荐(0)

摘要:由于直接删除了Project Server Service网站集所在的Web应用程序,导致在Project Server Service Application中有残留数据。在视图删除Project Server Service Application时会提示:Service application cannot be deleted due to existing project sites.对于此问题,可按如下步骤解决:1. 通过如下命令查看所有的Project Server Service Application实例信息:$psi = get-spserviceapplication | 阅读全文

posted @ 2014-01-09 16:48 FryFish 阅读(631) 评论(0) 推荐(0)

摘要:首先,可在Powershell中用如下命令查看关于运算符的介绍说明:Help about_OperatorsPowershell支持运算符主要有这么几种类型: √ 算术运算符:用于进行数值计算 √ 赋值运算符:给变量赋值,或者计算后赋值 √ 比较运算符:条件运算符的其中一类,用于比较值或对象的大小 √ 逻辑运算符:条件运算符的另一类,用于连接多个条件表达式 √ 重定向运算符:用于重定向的运算符,详情参考about_redirection √ 拆分/联接运算符:字符串运算符的一类,用于对字符串进行拆分和联接 √ 类型运算符:判断或更改对象的类型 √ 一元运算符:就是++和--啦 ... 阅读全文

posted @ 2014-01-09 12:44 FryFish 阅读(1362) 评论(0) 推荐(0)

摘要:首先将如下脚本保存为PowerShell文件,如:ReorderUserProfileProperty.ps1。在执行此脚本时,如果不输入任何参数,将列出所有用户配置文件属性的名称和显示次序;如果只输入属性名称,则显示此属性的显示次序;如果输入了属性名称和显示次序,则修改此属性的显示次序。##################################################################################### Function: Re-order a user profile property, or show display order of 阅读全文

posted @ 2013-10-28 16:25 FryFish 阅读(1377) 评论(0) 推荐(0)

摘要:Windows PowerShell: 脚本速成教程这一扩展的 Windows PowerShell 栏将迅速提升您对这一强大技术的认识。Don Jones越来越多的您正习惯于使用 Windows PowerShell,并意识到其优势。本月的专栏将会很长,这点您需要有心理准备。这是一个关于 Windows PowerShell 脚本的快速概述,其中包括如何生成参数化的脚本。在今后几个月,我将在此基础上集中讨论特定的一些主题。如果您不习惯于运行 Windows PowerShell 命令,在控制台中,您可能发现这太高级,但要仍要通过绘制。应该有深入了解的 Windows PowerShell 安 阅读全文

posted @ 2013-09-29 18:30 FryFish 阅读(2608) 评论(0) 推荐(1)

摘要:别名标准名称acAdd-ContentasnpAdd-PSSnapInclcClear-ContentcliClear-ItemclpClear-ItemPropertyclvClear-VariablecompareCompare-ObjectcpiCopy-ItemcppCopy-ItemPropertycvpaConvert-PathdbpDisable-PSBreakpointdiffCompare-ObjectebpEnable-PSBreakpointepalExport-AliasepcsvExport-CsvfcFormat-CustomflFormat-Listforeac. 阅读全文

posted @ 2013-09-29 13:16 FryFish 阅读(560) 评论(0) 推荐(0)

摘要:本人更换路径重新安装了Microsoft Visual Studio之后,在新创建的Project中添加一个组件时,总是提示不能找到模板文件,其中提示信息中的模板文件路径还是老的安装路径。在经过艰苦卓绝的删除各种配置信息之后,终于解决了此问题。下面以Visual Studio 11.0(2012)为例,说明本人在此过程中删除的信息供大家参考:1. 配置文件信息Visual Studio的配置文件分别保存在如下三个文件夹中,将这些文件夹删除或重命名,可重置相关配置信息:%USERPROFILE%\AppData\Local\Microsoft\VisualStudio\11.0%USERPROF 阅读全文

posted @ 2013-05-23 16:34 FryFish 阅读(3801) 评论(0) 推荐(0)

摘要:I. 向Outlook批量导入VCF文件1. 通过Outlook导入功能导入打开Outlook联系人界面,并将批量VCF文件拖入联系人卡片区域,系统将自动导入这些VCF文件。2. 通过VB Script脚本导入1)打开outlook2007,按下alt+F11,调出Visual Basic编辑器;2)工具——引用,找到Microsoft Scripting Runtime和Windows Script Host Object Model勾选,确定;3)插入——模块,复制粘贴以下代码,并保存;Sub OpenSaveVCard()Dim objWSHShell As IWshRuntimeLib 阅读全文

posted @ 2012-06-16 16:25 FryFish 阅读(10592) 评论(0) 推荐(0)

摘要:Qlikview:http://www.qlikview.com/StyleScope / StyleReport:http://www.inetsoft.com.cn/products/StyleScope/http://www.inetsoft.com.cn/products/StyleReportEE/ 阅读全文

posted @ 2011-02-11 17:00 FryFish 阅读(133) 评论(0) 推荐(0)

摘要:微软提供了PowerShell 2.0快速参考的文档,但将每两张图拼在了一页中,A4纸无法打印。(用A4纸打印出来的字太小。)所以我将这些图拷贝成了单独的图片,可用来打印到A4纸上随时参考:1. PowerShell Quick Reference Page I2. PowerShell Quick Reference Page II3. PowerShell Quick Reference Page III4. PowerShell Quick Reference Page IV 阅读全文

posted @ 2010-05-19 18:22 FryFish 阅读(261) 评论(0) 推荐(0)

1