this post was submitted on 12 Mar 2024
1952 points (99.2% liked)

Technology

58017 readers
3690 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

These changes are only applicable to users in the EEA. For those outside the region, Windows will continue to function as it is!

The changes to Windows for DMA-compliance include:

  • You can now uninstall Edge and Bing web search using the built-in settings. Earlier, the option was greyed out.
  • Third-party web search application developers can now utilize the Windows search box in the taskbar using the instructions provided by Microsoft and choose any web browser to show results from the web.
  • Microsoft will no longer sign-in users to Edge, Bing, and Microsoft Start services during the initial Windows setup experience.
  • Data collected about the functioning of non-Microsoft apps, primarily bug detection and its effects on the OS, from Windows PCs will not be used for competitive purposes.
  • Microsoft, from now on, will need explicit user consent before combining data from the OS and other sources. It will also deliver new consent screens where required.
you are viewing a single comment's thread
view the rest of the comments
[–] Simon@lemmy.dbzer0.com 4 points 6 months ago (2 children)

Why aren't you string quoting all of your paths anyway? I'm confused because the vast majority of paths wouldn't work the way you're suggesting.

[–] UmeU@lemmy.world 1 points 6 months ago (1 children)

Even something as simple as:

move-item “C:\Users\computername\Desktop\afiletomove.csv” (“C:\Users\computername\Desktop\destinationFolder\newFileName (0:MMddyyyy).csv” -f (get-date))

Stops working as intended when your desktop no longer resides at that path.

Also, I have the same functions running on multiple machines with different names so I have to dynamically resolve the path and piece it together using strings.

[–] Simon@lemmy.dbzer0.com 1 points 6 months ago (1 children)

Okay, so if your source path changes, your script stops working? Who knew. Try ([Environment]::GetFolderPath("Desktop"))

[–] UmeU@lemmy.world 1 points 6 months ago* (last edited 6 months ago) (1 children)

I am using that already, but if I recall, it’s the space in the path ‘\one drive\’ that makes that not work correctly.

Edit: I am actually using $Env:UserName

[–] Simon@lemmy.dbzer0.com 1 points 6 months ago* (last edited 6 months ago) (1 children)

Yeah the deeper path might help.

Basically the thing to remember about powershell that separates it from other scripts is you want to pipe pipe pipe your data as far as possible so it stays an object, and then output a string at the very end - there's no tons of awk sed string manipulation like in bash, partly because of what you pointed out with how terminal input is interpreted.

[–] UmeU@lemmy.world 1 points 6 months ago

It’s only happened twice, after updates, that windows turned one drive back on and remapped my desktops. In those cases I have just turned it back off and remapped back to normal. Then env:username works again and I think the only difference is the space in the path with one drive, though it could be something else breaking when the desktop gets remapped.

I’m probably using powershell all wrong anyways because I am an amateur.

I use it to grab a file from an sftp by calling on winSCP, then convert from csv to xlsx using the excel module, then run a bunch of VBA to reformat the file, then save the xlsx with a date stamp. I use task scheduler to run it daily and I have it on like 10 machines.

Works great when one drive doesn’t mess with my desktop path.

[–] squozenode@lemmy.world 1 points 6 months ago

Yeah, I reflexively double quote every path. It's still stupid though.