23 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
184
views
Azure Devops Pipeline - PublishPipelineArtifact@1 - Symbolic link handling problem
we are using self hosted Linux build agents with the Azure DevOps SaaS solution.
The pipeline is running in a Docker container context.
In one pipeline I want to publish the whole workspace folder. ...
0
votes
1
answer
118
views
How to programatically call fsutil 8dot3name apis?
I would like to call fsutil 8dot3name programmatically using some winapi function(s) but I've failed to find any winapi equivalent via google searches.
Does anyone know if such a winapi function ...
0
votes
0
answers
238
views
Hugo "Error while watching: short read in readEvents()" - unnecessary page refreshes
The specific error is:
"Error while watching: short read in readEvents()"
this error is being output by the hugo server.
The phenomena this causes is continuous local server "Change ...
6
votes
1
answer
15k
views
Deleting & Recreating NTFS Journals (Or How to Properly run the 'fsutil usn' Command)
I have a chkdsk Stage 3 error (which relates to NTFS usn journals and security descriptors).
Corrupted NTFS journals prevent chkdsk /f from running a repair of the volume. So chkdsk repairs won't run ...
8
votes
2
answers
568
views
Building ionic angular app fails when built from teamcity but succeeds every where else
We are working on a new angular ionic app and it builds on all our machines from powershell but on our build machine when it pulls the files from perforce to our D: drive it fails to build. Our build ...
5
votes
0
answers
276
views
Support for case sensitive Windows directories in NIO.2
Recent Windows 10 builds feature an ability to mark a single NTFS directory (not the whole file system) as case sensitive, via fsutil.exe:
Per-directory case sensitivity and WSL
How to Enable Case ...
0
votes
0
answers
525
views
Access denied while opening file with FILE_OPEN_BY_FILE_ID, NtCreateFIle, ObjectID
Here I am trying to get a file handle by opening the fine by objectID, this open call is returning in access denied but the calling process has fill write access to the volume. Same call is working on ...
1
vote
0
answers
113
views
win32 hardlinks and process name
I'm a tester and have hundreds of versions of the same program to test.
To avoid copying certain executables I store them as prog.exe.1 prog.exe.2 etc.
then the script create a hardlink prog.exe (...
4
votes
1
answer
17k
views
Why does using Fsutil make your windows computer run faster?
I have stumbled across this video which supposedly makes your computer run faster:
Fsutil behaviour set memoryusage 2
However, I don't understand why it makes your computer faster. This seems too ...
1
vote
0
answers
112
views
How can I change the maxver parameter of a drive's usn change journal?
I have an NTFS hard drive that I need to create a change journal on for my application. However I'm running into errors when attempting to use the created journal and I believe it's due to the maxver ...
0
votes
1
answer
138
views
Best way to get file list in dir sorted by added date
I have to delete the oldest file in dir when the newest added file exceed the used space limit. I don't know why the sorted list files = sorted(os.listdir(DIR), key=os.path.getctime) do not contain on ...
1
vote
0
answers
692
views
fsutil setcasesensitiveinfo not working on sub Directories
I used this command to make windows directory casesensitive.
fsutil.exe file setCaseSensitiveInfo -destination here- enable
It's working fine on that directory, but not on it's sub directories. I ...
-1
votes
1
answer
2k
views
Batch script to get total,free,available size of disks
Thanx in advance
I want to create a batch script using which I get all the drives used space, available space, and total space and store it in to the table.
Please help me. i found fsutil command ...
32
votes
5
answers
21k
views
fsutil - The request is not supported after setCaseSensitiveInfo
I am trying to make a folder on Windows 10 case sensitive.
I found this link that shows what you should do:
basically it should be very easy:
fsutil.exe file setCaseSensitiveInfo -destination here- ...
0
votes
1
answer
3k
views
fsutil file createnew on windows vs dd on linux
As title, I wonder how fsutil in windows can create a really large file so fast. Does it really allocate real cluster for that file or it just writes down file's metadata? Consider two commands below:
...