mklink

win10下使用mklink命令给C盘软件搬家

一曲冷凌霜 提交于 2020-08-18 05:05:42
在windows下,大多数软件会默认安装在C盘,即使小心翼翼地点开“自定义”->“安装路径”,然后把软件安装到其他盘,还是会有很多软件用到的数据文件被塞到C盘,虽然可以到注册表修改软件默认安装路径以及数据存储路径,然而emmm...并没有多大用处,C盘还是会被塞满。 我C盘是SanDisk的SSD,虽然128G不算少,但是我分了十多G给PrimoCache做缓存,然后又装了很多很多的软件,C盘被塞得满满当当的,这时候需要把C盘上一些文件搬到其他盘。然而C盘大都是软件会用到的数据文件,直接Ctrl+X,Ctrl+V的话会出现很多问题,那么可不可以在搬家后给原来的路径搞个“代理”,把路径指向文件的实际地址?如下图所示: 接下来我们就试验下吧,先试着用快捷方式来实现搬家: 我这里把迅雷安装路径下整个文件夹剪切出来,然后在原来路径下放个快捷方式,然后双击桌面上的迅雷快捷方式,成功启动,并没有啥不妥,接下来换个方式: 把迅雷中的resources文件夹剪切出来,然后把快捷方式放进去,然后启动迅雷,emmm。。迅雷打不开了。 为什么会出现这样的问题,很简单,第一次操作是把迅雷整个文件夹剪切出来的,这个文件夹包含了迅雷运行的所需要的所有文件,第二次操作时,迅雷的程序找不到resources里面的文件,所以就运行不起来了,那为什么把快捷方式放这里没有用呢。 其实是因为快捷方式本质是个.ink文件

IntelliJ IDEA 2020版AppData\JetBrains存储位置转移

纵然是瞬间 提交于 2020-08-14 23:47:34
在这个2020.1版本之前的,我都是使用免安装zip包,解压后修改idea.properties,配置idea64.exe.vmoptions参数后就开始快乐的玩耍了! 最近使用的Idea 2020版本,发现在C盘用户目录下AppData\JetBrains\IntelliJIdea2020.1下存储很多文件,而且修改不了,可以参考官网的这个帖子 AppData\Local\JetBrains\Installations folder 参考帖子里的讨论,我决定使用软链接( Windows硬链接 软链接 符号链接 快捷方式 ),成功转移储存位置,在此记录。 将当前用户AppData\Local下JetBrains转移到目标磁盘目录下,cmd进入当前用户AppData\Local下,执行命令: mklink /J "JetBrains" "D:\DevIde\IntelliJIDEA\JetBrains" 来源: oschina 链接: https://my.oschina.net/u/1381027/blog/4298614

win10下使用mklink命令给C盘软件搬家

隐身守侯 提交于 2020-08-11 00:10:35
在windows下,大多数软件会默认安装在C盘,即使小心翼翼地点开“自定义”->“安装路径”,然后把软件安装到其他盘,还是会有很多软件用到的数据文件被塞到C盘,虽然可以到注册表修改软件默认安装路径以及数据存储路径,然而emmm...并没有多大用处,C盘还是会被塞满。 我C盘是SanDisk的SSD,虽然128G不算少,但是我分了十多G给PrimoCache做缓存,然后又装了很多很多的软件,C盘被塞得满满当当的,这时候需要把C盘上一些文件搬到其他盘。然而C盘大都是软件会用到的数据文件,直接Ctrl+X,Ctrl+V的话会出现很多问题,那么可不可以在搬家后给原来的路径搞个“代理”,把路径指向文件的实际地址?如下图所示: 接下来我们就试验下吧,先试着用快捷方式来实现搬家: 我这里把迅雷安装路径下整个文件夹剪切出来,然后在原来路径下放个快捷方式,然后双击桌面上的迅雷快捷方式,成功启动,并没有啥不妥,接下来换个方式: 把迅雷中的resources文件夹剪切出来,然后把快捷方式放进去,然后启动迅雷,emmm。。迅雷打不开了。 为什么会出现这样的问题,很简单,第一次操作是把迅雷整个文件夹剪切出来的,这个文件夹包含了迅雷运行的所需要的所有文件,第二次操作时,迅雷的程序找不到resources里面的文件,所以就运行不起来了,那为什么把快捷方式放这里没有用呢。 其实是因为快捷方式本质是个.ink文件

新版edge转移缓存

别说谁变了你拦得住时间么 提交于 2020-05-01 17:35:35
mklink /D "C:\Users\15305\AppData\Local\Microsoft\Edge" "D:\Users\15305\AppData\Local\Edge" mklink /D "C:\Users\XXX\AppData\Local\Microsoft\Edge" "D:\Users\XXX\AppData\Local\Edge" 来源: oschina 链接: https://my.oschina.net/u/2245781/blog/4261066

Use the Microsoft Symbol for VS and Windbg

末鹿安然 提交于 2020-04-30 19:57:56
快捷方式mklink的远程符号由于所有者权限问题,链接到本地可能造成不能使用, 或每次都需要重新下载, 1、环境变量中没有设置_NT_SYMBOL_PATH的值 2、windbg快捷方式中也没有设置-y c:\.... 但是每次启动windbg时symbol search path会有默认的值 RV*E:\MylocalSymbols *http://msdl.microsoft.com/download/symbols, 如果按1、2方式设置时则添加在此路径后面。想修改这个路径或者删除重新设定。大牛请速来帮帮忙,搞了快一天了,找不到在那边设置的 原因是WinDbg将前一次的设置以工作区的形式保存在注册表中, 你看看Delete Workspaces有没有可以删除的项目,有的话删除掉。 你还可以进入到HKEY_CURRENT_USER\Software\Microsoft\Windbg\Workspaces这个注册表下,将下面的内容通通都删除。 1. 在windbg中可以使用如下命令: .sympath SRV*f:\localsymbols*http://msdl.microsoft.com/download/symbols 设置_NT_SYMBOL_PATH F:\Symbol;symsrv*symsrv.dll*F:\Symbol*http://msdl.microsoft

No speed-up after using MKL for Eigen

倖福魔咒の 提交于 2020-01-06 15:43:10
问题 I use Eigen 3.3 and Intel MKL 2017, and write and run program in Visual Studio 2012 with Win-7 64-bit system and Intel Xeon(R) CPU E5-1620 v2@3.70GHZ CPU. I belive that my configuration for MKL is correct, because I can succesfully run MKL examlpe codes. The configuraton for using Intel MKL from Eigen follows from https://eigen.tuxfamily.org/dox/TopicUsingIntelMKL.html. For Visiual Studio 2012, I complie codes via Intel C++ Complier in Release x64 model. However, the following code always

Is there any way to create symbolic link in WIX installer?

心不动则不痛 提交于 2020-01-04 02:56:08
问题 I need to create a symbolic-link for a particular folder; that folder is created by a WIX installer. Is there any way to create a symbolic-link from WIX installer? I have read about mklink , but I do not know how to use that in WIX (v3)? 回答1: You can use Custom actions to run the mklink. Run the custom actions after InstallFinalize. Or you can use Short cut instead of symbolic links. In Custom Action file: [CustomAction] public static ActionResult symboliclink(Session session) { string

Python Windows CMD mklink, stops working without error message

孤街醉人 提交于 2019-12-12 23:30:23
问题 I want to create symlinks for each file in a nested directory structure, where all symlinks will be put in one large flat folder, and have the following code by now: # loop over directory structure: # for all items in current directory, # if item is directory, recurse into it; # else it's a file, then create a symlink for it def makelinks(folder, targetfolder, cmdprocess = None): if not cmdprocess: cmdprocess = subprocess.Popen("cmd", stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr

How to create symbolic links for multiple files in multiple folders using command prompt or power shell?

 ̄綄美尐妖づ 提交于 2019-12-10 11:40:56
问题 I have two main folders which have a lot of sub-folders in different drives. Have to create symbolic link for all files in the second folder into the first one. C:\folderC>tree /f C:. ├───folder1 │ file1.txt │ file3.txt │ └───folder2 file1.txt file3.txt D:\folderD>tree /f D:. ├───folder1 │ file2.txt │ └───folder2 file2.txt Result using 2 commands: C:\>mklink C:\folderC\folder1\file2.txt D:\folderD\folder1\file2.txt symbolic link created for C:\folderC\folder1\file2.txt <<===>> D:\folderD

How to run windows command “mklink” from vb.net application?

北城余情 提交于 2019-12-10 10:54:19
问题 I want to be able to run "mklink path1 path2" from my vb.net project. I fail to do that. I have tried with Shell() function and with Process. With this it only open cmd.exe window and does nothing: Dim process As New Process process.StartInfo.FileName = "cmd.exe" process.StartInfo.Arguments = "mklink """ + arma2oaAddons + """ """ + arma2Addons + """ /j" process.StartInfo.WorkingDirectory = "C:\" process.Start() And with this I get error "File not found". It can't find mklink.: Shell("mklink "