Hmm, I have been setting folder colors in Teams as we got more and more clients, but they never synced to File Explorer on my Surface Pro 7+. So, all this while, thought the feature wasn't available yet. Guess it'll need to be changed via the SharePoint website for it to sync to File Explorer.
Thanks for sharing 👍🏼
A script doesn't care if your book is written by AI or not, so, not sure how that changes anything. They'll just be further advertising your work in such.
As for AGI, not sure how using AI in writing a book suddenly equates to me supporting AGI replacing everyone in the workplace. Either way, if such does happen, I'll just carry on with community services, AGI replacing such roles only speeds up the spreading of the message...
Question
borked technique
In my code, I want to start a .exe file but I want to wait 30 seconds before the start of it.
I thought of doing it like so:
ProcessStartInfo startinfo = new ProcessStartInfo();
startinfo.FileName = "cmd.exe";
startinfo.Arguments = @"C:\program.exe";
startinfo.UseShellExecute = false;
startinfo.CreateNoWindow = true;
Process process;
process = Process.Start(startinfo);
This would work except I still need a delay. Any help? Thanks.
Link to comment
https://www.neowin.net/forum/topic/464492-c-process-with-delay/Share on other sites
5 answers to this question
Recommended Posts