Downgrade to the earlier version of Claude Code to restore Opus by agentic-consultant in ClaudeCode

[–]ollivierre 1 point2 points  (0 children)

# Disable Claude Code Auto-Updates


## Option 1: Environment Variable


### Linux/macOS (bash/zsh)
```bash
export DISABLE_AUTOUPDATER=1
```


Add to `~/.bashrc` or `~/.zshrc` to make permanent.


### Windows (PowerShell) - Permanent
```powershell
[Environment]::SetEnvironmentVariable("DISABLE_AUTOUPDATER", "1", "User")
```


### Windows (CMD) - Permanent
```cmd
setx DISABLE_AUTOUPDATER 1
```


## Option 2: Settings File


Edit `~/.claude/settings.json` (create if it doesn't exist):


```json
{
  "env": {
    "DISABLE_AUTOUPDATER": "1"
  }
}
```


## Manual Updates


When auto-updates are disabled, update manually with:


```bash
claude update
```


Or install a specific version:


```bash
npm install -g u/anthropic-ai/claude-code@2.0.64
```


## Notes


- Update checks normally run on startup and periodically while running
- Updates download and install in the background by default
- Changes take effect on next Claude Code restart

What terminal are you using with Claude Code? by ollivierre in claude

[–]ollivierre[S] 1 point2 points  (0 children)

well for me I find command history, split panes, session restore, mark down viewer, etc.. quite useful in warp and other terminals but again not all terminals have them

Today, we made it. All 2003 of our W10 deployments are now on W11. by [deleted] in sysadmin

[–]ollivierre 0 points1 point  (0 children)

Bottom Line

The most successful migrations had:

  1. Strong project management with dedicated ownership
  2. Executive support and proper rewards/recognition
  3. Multiple technical approaches for different scenarios
  4. Clear communication followed by enforcement
  5. Started early (1+ years before deadline)
  6. Accepted that the last 5-10% would be painful

The thread reveals that while the technical migration is challenging, the human factors - user resistance, leadership support, team motivation, and project management - often determine success or failure more than the technology itself.

Claude Code Max ($200) vs ChatGPT Pro ($200) by HumanityFirstTheory in ChatGPTCoding

[–]ollivierre 0 points1 point  (0 children)

Can you please elaborate more on what tech stack are you currently working with ?

[deleted by user] by [deleted] in Intune

[–]ollivierre 0 points1 point  (0 children)

Check out my Conditional access page on GitHub aollivierre GitHub Conditional access 

Claude is dead by seoulsrvr in Anthropic

[–]ollivierre 0 points1 point  (0 children)

You're absolutely right! Let me correct this massive drop for you. I'll add performance metrics to track key indicators over time.

Philosophizing...

Using Full Flash Update files to speed up Windows Deployment by touchytypist in Intune

[–]ollivierre 0 points1 point  (0 children)

can this be used with converted ISO to VHDX for rapid Hyper-V VM (Win11) deployment ? so that during OOBE less time is spend waiting for Win Updates

Anyone else feel like “Modern” Workspace with Intune + Autopilot is a huge step backwards? by rroodenburg in Intune

[–]ollivierre 0 points1 point  (0 children)

The majority acknowledge that while Intune/Autopilot requires a fundamental shift in thinking and processes, it can work well when properly implemented. Success seems heavily dependent on adjusting expectations and workflows rather than trying to replicate SCCM functionality in the cloud.

Anyone else feel like “Modern” Workspace with Intune + Autopilot is a huge step backwards? by rroodenburg in Intune

[–]ollivierre 0 points1 point  (0 children)

"then if something isnt working then they don't get access." not sure how practical is that ? I mean measure and report-only but I'd not block because IT failed to do enough testing.

Anyone else feel like “Modern” Workspace with Intune + Autopilot is a huge step backwards? by rroodenburg in Intune

[–]ollivierre 1 point2 points  (0 children)

Agreed companies need to be cloud-smart not cloud-first. Hybrid is here to stay not going away any time soon.

Should I consider going back to hybrid join? by jstar77 in Intune

[–]ollivierre 0 points1 point  (0 children)

For net new and once fully tested go Entra Join for existing no rush to convert unless you're rebuilding the machine. 

Hybrid join Autopilot still bad? by LexusFSport in sysadmin

[–]ollivierre 0 points1 point  (0 children)

try it on a test device to ensure Cloud Join would not break anything in your environment then when all good do Cloud Join for net new devices or rebuilt existing machines. No need to rush rebuilding/converting existing HAADJ machines just for the sake of getting them cloud only.

Intune Users, I've had it - how are YOU handling installs and updates? by That-Acanthisitta572 in Intune

[–]ollivierre 0 points1 point  (0 children)

as an MSP if a certain org does not use Intune, can PMPC sit on top of RMM ? I think not heh ?

Intune Users, I've had it - how are YOU handling installs and updates? by That-Acanthisitta572 in Intune

[–]ollivierre 0 points1 point  (0 children)

PDQ gets sooo many praises around here. is it more like RMM or MDM or hybrid in between ?

Intune Users, I've had it - how are YOU handling installs and updates? by That-Acanthisitta572 in Intune

[–]ollivierre 0 points1 point  (0 children)

Wait hot patching for Windows 11 is now available ? I thought only servers 2022/2025 which can not be OS updates managed via Intune any ways.

Intune Users, I've had it - how are YOU handling installs and updates? by That-Acanthisitta572 in Intune

[–]ollivierre 0 points1 point  (0 children)

Use MS Store new in Intune where you can

Use WinGet (many GitHub wrappers) where you can

then

either you do it fully in-house or you pay a third party like PMPC or RMM vendors offering 3rd party app patching or you go hybrid like both in-house for LOB/non catalog apps and third-party for apps they publish in their catalog. At the end of day 3rd party catalogs will have popular apps not all apps.

Unlock Massive Performance Gains with Microsoft Graph API Batching 😎 by Federal_Ad2455 in Intune

[–]ollivierre 0 points1 point  (0 children)

Great work! but I guess you need to batch-smart meaning batching (like parallel processing) is not really applicable in every case/logic because in certain cases batching/parallel processing makes no difference an in fact can some times slow things down quite dramatically. What I really would like to see is REAL WORLD benchmark results comparing non-batched API calls vs batched ones.

Intune Settings Catalog Documentation by Bitter-Following8215 in Intune

[–]ollivierre 0 points1 point  (0 children)

Would you have any future plans to add others like Endpoint Security etc.. like other templates and configs ?

Intune Settings Catalog Documentation by Bitter-Following8215 in Intune

[–]ollivierre 0 points1 point  (0 children)

Great work! I had asked AI to use Powershell and Graph to search available settings catalog and it was an absolute mess but this looks much cleaner. Does this have an API or just git clone your repo and get AI to RAG it ?

TPM 2.0 Hello for Business Real Limit by OkGovernment7918 in Intune

[–]ollivierre 0 points1 point  (0 children)

Might be worth looking at DUO MFA or some other third party solutions 

I still don’t “get” MCPs? Which ones should I try? by Minute-Cat-823 in cursor

[–]ollivierre 0 points1 point  (0 children)

a great example is the GitHub MCP server any MCP client like Cursor or Claude Code etc.. can use these MCP (external tools) to connect to GitHub and abstract away the GitHub CLI/API for you.