Fixing “Your organization has deleted this device” Without Reconnecting Everything
A user experienced an error message on their company laptop stating that the organization had deleted the device. Instead of disconnecting and reconnecting their work account, they found a command that resolved the issue. By running 'dsregcmd /forcerecovery' in the terminal, they were able to log in again without the hassle of re-authenticating apps and services.
- ▪The error message displayed was 'Your organization has deleted this device' with error code 700003.
- ▪The suggested fix involved running a specific command in the terminal to recover the device without disconnecting the work account.
- ▪This solution is applicable for devices that are Microsoft Entra joined.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 79932) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Emanuele Bartolesi Posted on May 19 Fixing “Your organization has deleted this device” Without Reconnecting Everything #windows #productivity #help For two days, my company laptop kept showing this error: Your organization has deleted this device. To fix this, contact your system administrator and provide error code 700003. At first, it looked like the only option was to disconnect and reconnect my work account from Windows. I really did not want to do that.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).