one drive custom folders sync

bedouinbro

Member
i want to sync two custom folders with the same name from different directories to Onedrive, found something in this forum

but I'm getting these errors when executing the command
Screenshot (22).png
Screenshot (23).png
any solutions ?
 
Sure, I'd be glad to assist you with this.

The procedure mentioned in the forum link involves creating a symbolic link (mklink) in the OneDrive directory that redirects to your desired folder. When you run the command and you're receiving an error, it often implies that:

1. The command prompt is not run with administrative permissions. Ensure that you right-click on the 'Command Prompt' and select 'Run as Administrator'.

2. There might be a typing error in the command or some confusion between the placeholder text and what you'll need to replace with your specific data.

The command you should use has the following format:

```mklink /J "%UserProfile%\OneDrive\DesiredFolderName" "Full\Path\To\Your\Folder"```

Replace `DesiredFolderName` with the name you want your new OneDrive folder to have and replace `Full\Path\To\Your\Folder` with the actual path to your target folder.

Remember, if any part of the paths includes spaces, you will need to surround the entire path with double quotes.

If both your folders have the same name, you might need to give them different names within OneDrive to avoid confusion. For instance, 'Folder1' and 'Folder2' or something more descriptive based on the contents. The names on your local computer can remain the same though.

Also, I'd like to mention that symbolic links can sometimes cause issues with some backup and sync services. OneDrive in particular for a while had a bit of an odd relationship with symbolic links. Therefore, always ensure that the sync is working properly by checking OneDrive's status and seeing if the files show up on the OneDrive website.

If you're still having issues, please provide the exact error message or more details so we can provide a more accurate solution.
 
Sure, I'd be glad to assist you with this.

The procedure mentioned in the forum link involves creating a symbolic link (mklink) in the OneDrive directory that redirects to your desired folder. When you run the command and you're receiving an error, it often implies that:

1. The command prompt is not run with administrative permissions. Ensure that you right-click on the 'Command Prompt' and select 'Run as Administrator'.

2. There might be a typing error in the command or some confusion between the placeholder text and what you'll need to replace with your specific data.

The command you should use has the following format:

```mklink /J "%UserProfile%\OneDrive\DesiredFolderName" "Full\Path\To\Your\Folder"```

Replace `DesiredFolderName` with the name you want your new OneDrive folder to have and replace `Full\Path\To\Your\Folder` with the actual path to your target folder.

Remember, if any part of the paths includes spaces, you will need to surround the entire path with double quotes.

If both your folders have the same name, you might need to give them different names within OneDrive to avoid confusion. For instance, 'Folder1' and 'Folder2' or something more descriptive based on the contents. The names on your local computer can remain the same though.

Also, I'd like to mention that symbolic links can sometimes cause issues with some backup and sync services. OneDrive in particular for a while had a bit of an odd relationship with symbolic links. Therefore, always ensure that the sync is working properly by checking OneDrive's status and seeing if the files show up on the OneDrive website.

If you're still having issues, please provide the exact error message or more details so we can provide a more accurate solution.
these are the commands i executed
PS C:\Users\Mehdi> mklink /j "%UserProfile%\OneDrive\qBittorrentLocal" "C:\Users\Mehdi\AppData\Local\qBittorrent"

mklink: The term 'mklink' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

PS C:\Users\Mehdi> mklink /j "%UserProfile%\OneDrive\qBittorrentRoaming" "C:\Users\Mehdi\AppData\Roaming\qBittorrent"

mklink: The term 'mklink' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.


i have also provided the errors I'm getting
 
these are the commands i executed
PS C:\Users\Mehdi> mklink /j "%UserProfile%\OneDrive\qBittorrentLocal" "C:\Users\Mehdi\AppData\Local\qBittorrent"

mklink: The term 'mklink' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

PS C:\Users\Mehdi> mklink /j "%UserProfile%\OneDrive\qBittorrentRoaming" "C:\Users\Mehdi\AppData\Roaming\qBittorrent"

mklink: The term 'mklink' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.


i have also provided the errors I'm getting
I see what's happening here. The error messages are occurring because you are trying to run a Command Prompt command within PowerShell.

The Command Prompt and PowerShell are two different command line interfaces and, while they share some commands, there are many that exist only in one or the other. In this case, `mklink` is a Command Prompt-specific command and is not recognized in PowerShell.

Here are a few options you can choose from:

1. **Use Command Prompt:** You can open a Command Prompt window with administrative privileges and run your commands there.

2. **Use PowerShell Equivalent:** You might prefer to use PowerShell's equivalent to `mklink`, the `New-Item` cmdlet:

- For your qBittorrentLocal:
```
New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentLocal" -Target "C:\Users\Mehdi\AppData\Local\qBittorrent"
```

- For your qBittorrentRoaming:
```
New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentRoaming" -Target "C:\Users\Mehdi\AppData\Roaming\qBittorrent"
```

This PowerShell command creates a new item, in this case, a Junction (which is the same as a Directory Junction in `mklink`), and points it to the desired target path.

Just replace the paths according to your needs.
 
I see what's happening here. The error messages are occurring because you are trying to run a Command Prompt command within PowerShell.

The Command Prompt and PowerShell are two different command line interfaces and, while they share some commands, there are many that exist only in one or the other. In this case, `mklink` is a Command Prompt-specific command and is not recognized in PowerShell.

Here are a few options you can choose from:

1. **Use Command Prompt:** You can open a Command Prompt window with administrative privileges and run your commands there.

2. **Use PowerShell Equivalent:** You might prefer to use PowerShell's equivalent to `mklink`, the `New-Item` cmdlet:

- For your qBittorrentLocal:
```
New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentLocal" -Target "C:\Users\Mehdi\AppData\Local\qBittorrent"
```

- For your qBittorrentRoaming:
```
New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentRoaming" -Target "C:\Users\Mehdi\AppData\Roaming\qBittorrent"
```

This PowerShell command creates a new item, in this case, a Junction (which is the same as a Directory Junction in `mklink`), and points it to the desired target path.

Just replace the paths according to your needs.
it looks like its working

PS C:\Users\Mehdi> New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentLocal" -Target "C:\Users\Mehdi\AppData\Local\qBittorrent"

Directory: C:\Users\Mehdi\OneDrive

Mode LastWriteTime Length Name
---- ------------- ------ ----
l---- 4/10/2024 2:17 PM qBittorrentLocal -> C:\Users\Mehdi\AppData\Local\qBittorrent

PS C:\Users\Mehdi> New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentRoaming" -Target "C:\Users\Mehdi\AppData\Roaming\qBittorrent"

Directory: C:\Users\Mehdi\OneDrive

Mode LastWriteTime Length Name
---- ------------- ------ ----
l---- 4/10/2024 2:18 PM qBittorrentRoaming -> C:\Users\Mehdi\AppData\Roaming\qBittorrent

PS C:\Users\Mehdi>
Screenshot (24).png


Screenshot (25).png
 
it looks like its working

PS C:\Users\Mehdi> New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentLocal" -Target "C:\Users\Mehdi\AppData\Local\qBittorrent"

Directory: C:\Users\Mehdi\OneDrive

Mode LastWriteTime Length Name
---- ------------- ------ ----
l---- 4/10/2024 2:17 PM qBittorrentLocal -> C:\Users\Mehdi\AppData\Local\qBittorrent

PS C:\Users\Mehdi> New-Item -ItemType Junction -Path "$env:UserProfile\OneDrive\qBittorrentRoaming" -Target "C:\Users\Mehdi\AppData\Roaming\qBittorrent"

Directory: C:\Users\Mehdi\OneDrive

Mode LastWriteTime Length Name
---- ------------- ------ ----
l---- 4/10/2024 2:18 PM qBittorrentRoaming -> C:\Users\Mehdi\AppData\Roaming\qBittorrent

PS C:\Users\Mehdi>
View attachment 43840

View attachment 43841
Great, it looks like your symbolic links were created successfully!

The "l----" at the start of the lines indicates these are symbolic link directories. The "->" essentially means "links to", so "qBittorrentLocal -> C:\Users\Mehdi\AppData\Local\qBittorrent" means that your 'qBittorrentLocal' link in your OneDrive directory now points to the real 'qBittorrent' located in your 'AppData\Local' directory. Similarly for 'qBittorrentRoaming'.

To confirm everything is working as expected:
1. Check your local OneDrive folder, you should see the new directories 'qBittorrentLocal' and 'qBittorrentRoaming'.
2. Make sure new files added to your local 'qBittorrent' folders appear in the corresponding 'qBittorrentLocal' and 'qBittorrentRoaming' folders in OneDrive.
3. Check if the files are syncing correctly to the cloud by verifying their presence on the OneDrive web interface.

If everything's working correctly, any changes you make in your local 'qBittorrent' folders will be seen and synced in your 'OneDrive' and vice versa.

Keep in mind that although these directories in your OneDrive appear to have your files, the data itself is actually stored in your original 'qBittorrent' folders.

Enjoy syncing your data with OneDrive! If you have further questions, feel free to ask!
 
Great, it looks like your symbolic links were created successfully!

The "l----" at the start of the lines indicates these are symbolic link directories. The "->" essentially means "links to", so "qBittorrentLocal -> C:\Users\Mehdi\AppData\Local\qBittorrent" means that your 'qBittorrentLocal' link in your OneDrive directory now points to the real 'qBittorrent' located in your 'AppData\Local' directory. Similarly for 'qBittorrentRoaming'.

To confirm everything is working as expected:
1. Check your local OneDrive folder, you should see the new directories 'qBittorrentLocal' and 'qBittorrentRoaming'.
2. Make sure new files added to your local 'qBittorrent' folders appear in the corresponding 'qBittorrentLocal' and 'qBittorrentRoaming' folders in OneDrive.
3. Check if the files are syncing correctly to the cloud by verifying their presence on the OneDrive web interface.

If everything's working correctly, any changes you make in your local 'qBittorrent' folders will be seen and synced in your 'OneDrive' and vice versa.

Keep in mind that although these directories in your OneDrive appear to have your files, the data itself is actually stored in your original 'qBittorrent' folders.

Enjoy syncing your data with OneDrive! If you have further questions, feel free to ask!
how do i make the sync in real time ? so when any changes occur in the desktop the data will also be stored in one drive ?
 
how do i make the sync in real time ? so when any changes occur in the desktop the data will also be stored in one drive ?
OneDrive on Windows should typically sync files in near real-time, meaning as soon as you make changes to a file or folder, it should start syncing those changes almost immediately, as long as you have an active internet connection.

However, if you are finding that files aren't syncing as instantaneously as you'd like, or if OneDrive seems to be lagging behind, you can follow these steps to ensure OneDrive operates in real-time as best as it can:

1. **Check sync status**: Look at the OneDrive icon in your system tray (the far right of the taskbar). If it is showing a white cloud, blue cloud, or swirling arrows, it's currently syncing files. A green check mark means it's up-to-date.

2. **Adjust settings**: Open your OneDrive settings by right-clicking the OneDrive icon in the system tray and choosing "Settings". Under the "Network" tab, if the upload rate is set to limit, reset it to "Adjust automatically".

3. **Give OneDrive high priority**: In Task Manager (which you can open by pressing Ctrl + Shift + Esc), look for OneDrive in the list of processes, then right-click on it and choose "Go to details". Now, right-click on it once more in the new list, select "Set priority", and set it to "High".

4. **Keep your device awake and online**: Make sure your computer doesn't go to sleep or offline as that will naturally interrupt OneDrive's syncing.

5. **Keep the OneDrive application updated**: Microsoft often pushes updates that can improve the functionality and performance of OneDrive, including its syncing capability. So make sure your OneDrive application is up-to-date.

While these measures maximize the real-time syncing of OneDrive, technical limitations and internet latency can sometimes introduce minor delays. However, under normal circumstances, OneDrive should sync files quickly enough that it seems like it's happening in real-time.
 
OneDrive on Windows should typically sync files in near real-time, meaning as soon as you make changes to a file or folder, it should start syncing those changes almost immediately, as long as you have an active internet connection.

However, if you are finding that files aren't syncing as instantaneously as you'd like, or if OneDrive seems to be lagging behind, you can follow these steps to ensure OneDrive operates in real-time as best as it can:

1. **Check sync status**: Look at the OneDrive icon in your system tray (the far right of the taskbar). If it is showing a white cloud, blue cloud, or swirling arrows, it's currently syncing files. A green check mark means it's up-to-date.

2. **Adjust settings**: Open your OneDrive settings by right-clicking the OneDrive icon in the system tray and choosing "Settings". Under the "Network" tab, if the upload rate is set to limit, reset it to "Adjust automatically".

3. **Give OneDrive high priority**: In Task Manager (which you can open by pressing Ctrl + Shift + Esc), look for OneDrive in the list of processes, then right-click on it and choose "Go to details". Now, right-click on it once more in the new list, select "Set priority", and set it to "High".

4. **Keep your device awake and online**: Make sure your computer doesn't go to sleep or offline as that will naturally interrupt OneDrive's syncing.

5. **Keep the OneDrive application updated**: Microsoft often pushes updates that can improve the functionality and performance of OneDrive, including its syncing capability. So make sure your OneDrive application is up-to-date.

While these measures maximize the real-time syncing of OneDrive, technical limitations and internet latency can sometimes introduce minor delays. However, under normal circumstances, OneDrive should sync files quickly enough that it seems like it's happening in real-time.
so the sync icon isn't changing, it is a blue arrow loop, found a video about it on manual upload it always remains in the blue cycle


anything can be done about this ?
 
so the sync icon isn't changing, it is a blue arrow loop, found a video about it on manual upload it always remains in the blue cycle


anything can be done about this ?

The blue arrow loop on your OneDrive icon indicates that syncing is occurring. If it keeps showing the sync symbol (the blue arrow loop) without ever reaching completion, there might be something preventing OneDrive from syncing.

Here are a few things you can try to resolve this:

1. **Check for large files or files with long path names:** OneDrive has limitations on file size (the max is 250GB per file) and pathname length (max 400 characters). If your sync contains a file that exceeds these limits, OneDrive can get stuck trying to sync it.

2. **Failed upload due to file type:** Some types of files, like Temporary files or Outlook .pst files can't be uploaded on OneDrive. Try removing these from the sync.

3. **OneDrive is trying to sync a large number of files:** If you added a large number of files at once, it may take OneDrive longer to sync.

4. **Pause and Resume Syncing:** Try pausing the sync process and then resuming it. Right-click on the OneDrive icon in the taskbar, select 'Pause syncing' and choose for how long. Afterward, right-click the icon again and select 'Resume syncing'.

5. **Updates Needed:** Make sure that both your OneDrive client and your Windows operating system are updated to the latest versions.

6. **Restart OneDrive:** Right-click the OneDrive icon in the taskbar, then select 'Close OneDrive'. If it prompts you to close OneDrive, click on 'Close OneDrive' again. Afterward, re-launch OneDrive from the Start menu.

7. **Reset OneDrive:** If none of the above methods works, try resetting OneDrive. Press "Win + R", then type or paste: %localappdata%\Microsoft\OneDrive\onedrive.exe /reset into the run window and press 'OK'. Note: After the reset, OneDrive will start itself automatically.

After you've tried these steps, wait for a while to see if the constant syncing stops. If it doesn't, or if you're still having problems, a more detailed look might be needed. Please share any error messages you've received or other notable behavior.
 
The blue arrow loop on your OneDrive icon indicates that syncing is occurring. If it keeps showing the sync symbol (the blue arrow loop) without ever reaching completion, there might be something preventing OneDrive from syncing.

Here are a few things you can try to resolve this:

1. **Check for large files or files with long path names:** OneDrive has limitations on file size (the max is 250GB per file) and pathname length (max 400 characters). If your sync contains a file that exceeds these limits, OneDrive can get stuck trying to sync it.

2. **Failed upload due to file type:** Some types of files, like Temporary files or Outlook .pst files can't be uploaded on OneDrive. Try removing these from the sync.

3. **OneDrive is trying to sync a large number of files:** If you added a large number of files at once, it may take OneDrive longer to sync.

4. **Pause and Resume Syncing:** Try pausing the sync process and then resuming it. Right-click on the OneDrive icon in the taskbar, select 'Pause syncing' and choose for how long. Afterward, right-click the icon again and select 'Resume syncing'.

5. **Updates Needed:** Make sure that both your OneDrive client and your Windows operating system are updated to the latest versions.

6. **Restart OneDrive:** Right-click the OneDrive icon in the taskbar, then select 'Close OneDrive'. If it prompts you to close OneDrive, click on 'Close OneDrive' again. Afterward, re-launch OneDrive from the Start menu.

7. **Reset OneDrive:** If none of the above methods works, try resetting OneDrive. Press "Win + R", then type or paste: %localappdata%\Microsoft\OneDrive\onedrive.exe /reset into the run window and press 'OK'. Note: After the reset, OneDrive will start itself automatically.

After you've tried these steps, wait for a while to see if the constant syncing stops. If it doesn't, or if you're still having problems, a more detailed look might be needed. Please share any error messages you've received or other notable behavior.
in the step 7 im getting this error
Screenshot (26).png


also tried closing and starting the one drive but the blue sync icon remains

Screenshot (27).png
 
in the step 7 im getting this error
View attachment 43843

also tried closing and starting the one drive but the blue sync icon remains
I apologize for any confusion, but it seems your error message got left out from your response. Could you please provide the error message you're seeing after trying to reset OneDrive in Step 7? This will give me more context to offer you a more suitable solution.

Meanwhile, here are a few additional solutions you can try:

1. **Check your Office Upload Center**: If you use Microsoft Office, there’s a chance OneDrive is stuck needing to resolve an issue with an Office file. Open the Office Upload Center (you should be able to find it by typing "Office Upload Center" into your Windows search), go to "Settings", and remove the checkmark from "Automatically keep my files on this device up to date".

2. **Check for conflicting files or folders**: Sometimes, OneDrive can't sync large file/folder names, file types it doesn't support, files with particular characters, or when there's a name conflict or outdated file version. On the OneDrive website, select Settings > View sync problems.

3. **Repair file sync issues**: Go to Start, enter OneDrive in the search box, and then select OneDrive (App). In Settings, select Office > Update Options > Update Now.

Following the above diagnostics and actions could potentially resolve your issue. If not, please reply with the error message you received while trying to reset OneDrive so we can continue troubleshooting. Thank you!
 
I apologize for any confusion, but it seems your error message got left out from your response. Could you please provide the error message you're seeing after trying to reset OneDrive in Step 7? This will give me more context to offer you a more suitable solution.

Meanwhile, here are a few additional solutions you can try:

1. **Check your Office Upload Center**: If you use Microsoft Office, there’s a chance OneDrive is stuck needing to resolve an issue with an Office file. Open the Office Upload Center (you should be able to find it by typing "Office Upload Center" into your Windows search), go to "Settings", and remove the checkmark from "Automatically keep my files on this device up to date".

2. **Check for conflicting files or folders**: Sometimes, OneDrive can't sync large file/folder names, file types it doesn't support, files with particular characters, or when there's a name conflict or outdated file version. On the OneDrive website, select Settings > View sync problems.

3. **Repair file sync issues**: Go to Start, enter OneDrive in the search box, and then select OneDrive (App). In Settings, select Office > Update Options > Update Now.

Following the above diagnostics and actions could potentially resolve your issue. If not, please reply with the error message you received while trying to reset OneDrive so we can continue troubleshooting. Thank you!
Windows cannot find 'C:\Users\MehdNAppData\Local\Microsoft\OneDrive\onedrive.exe'.
Make sure you typed the name correctly, and then try again.

step 7 error
 
Windows cannot find 'C:\Users\MehdNAppData\Local\Microsoft\OneDrive\onedrive.exe'.
Make sure you typed the name correctly, and then try again.

step 7 error
I'm sorry about the confusion, it seems that the text has been concatenated without spaces, so the path to onedrive.exe has become incorrect. The correct command should be:

```
%localappdata%\Microsoft\OneDrive\onedrive.exe /reset
```
Please, make sure there are proper spaces between elements in the path. Use the above command in the Run dialog box (Win + R), hit Enter and see if that works.

If you still receive an error message when trying to reset OneDrive using this command, you can manually navigate to the onedrive.exe file through File Explorer. Here is the correct full file path:

```
C:\Users\<YourUserName>\AppData\Local\Microsoft\OneDrive\onedrive.exe
```
Please replace <YourUserName> with your actual user account name.
 
I'm sorry about the confusion, it seems that the text has been concatenated without spaces, so the path to onedrive.exe has become incorrect. The correct command should be:

```
%localappdata%\Microsoft\OneDrive\onedrive.exe /reset
```
Please, make sure there are proper spaces between elements in the path. Use the above command in the Run dialog box (Win + R), hit Enter and see if that works.

If you still receive an error message when trying to reset OneDrive using this command, you can manually navigate to the onedrive.exe file through File Explorer. Here is the correct full file path:

```
C:\Users\<YourUserName>\AppData\Local\Microsoft\OneDrive\onedrive.exe
```
Please replace <YourUserName> with your actual user account name.
this is the file path for one drive
C:\Program Files\Microsoft OneDrive
 
this is the file path for one drive
C:\Program Files\Microsoft OneDrive
Apologies for the confusion earlier, if OneDrive is installed on your system under "C:\Program Files\Microsoft OneDrive", then try to reset it with the following command:

Press "Win + R", then type or paste:

```
C:\Program Files\Microsoft OneDrive\onedrive.exe /reset
```
and press 'Enter'.

The OneDrive system tray icon on the taskbar should disappear and re-appear after a minute or two. This indicates that OneDrive has been reset and is being set up again.

If the OneDrive system tray icon does not re-appear after a few minutes, open the Run dialog again and enter
```
C:\Program Files\Microsoft OneDrive\onedrive.exe
```
This should manually start the OneDrive process.

After this, the synchronization process should hopefully run smoothly. Let me know if you continue to face the problem, we can find other alternatives.
 
Apologies for the confusion earlier, if OneDrive is installed on your system under "C:\Program Files\Microsoft OneDrive", then try to reset it with the following command:

Press "Win + R", then type or paste:

```
C:\Program Files\Microsoft OneDrive\onedrive.exe /reset
```
and press 'Enter'.

The OneDrive system tray icon on the taskbar should disappear and re-appear after a minute or two. This indicates that OneDrive has been reset and is being set up again.

If the OneDrive system tray icon does not re-appear after a few minutes, open the Run dialog again and enter
```
C:\Program Files\Microsoft OneDrive\onedrive.exe
```
This should manually start the OneDrive process.

After this, the synchronization process should hopefully run smoothly. Let me know if you continue to face the problem, we can find other alternatives.
Screenshot (28).png

its resetting
 
That's great! Once the OneDrive reset process is complete, it should resume syncing your files.

In the future, if you find OneDrive stuck on syncing, try out this reset command. Remember that the reset will re-sync all your OneDrive files, which could take some time if you have a lot of files.

During the sync process, ensure your PC stays turned on and connected to the internet. Make sure that OneDrive is running (you can check this in your system tray), so it can complete the sync process.

If you run into any more issues, or need help with anything else, feel free to ask. Enjoy using OneDrive!
 
That's great! Once the OneDrive reset process is complete, it should resume syncing your files.

In the future, if you find OneDrive stuck on syncing, try out this reset command. Remember that the reset will re-sync all your OneDrive files, which could take some time if you have a lot of files.

During the sync process, ensure your PC stays turned on and connected to the internet. Make sure that OneDrive is running (you can check this in your system tray), so it can complete the sync process.

If you run into any more issues, or need help with anything else, feel free to ask. Enjoy using OneDrive!
Screenshot (29).png


Screenshot (30).png

Screenshot (31).png


but the syncing icons haven't changed for the manually added folders if you can analyze the image ( gpt 4 should be able to do it ) that would be great for faster analyzing and response
 
View attachment 43846

View attachment 43847
View attachment 43848

but the syncing icons haven't changed for the manually added folders if you can analyze the image ( gpt 4 should be able to do it ) that would be great for faster analyzing and response
I apologize for any confusion, but as an AI, I actually don't have the ability to visually analyze images. I can best assist by providing guidance based on the information you share with me in-text.

However, if the sync icons still haven't changed for the manually added folders, it suggests that the folders could still be syncing or there might be an issue with these specific folders.

Here's a few things you could try:

1. **Check Folder Size and File Type** - OneDrive has file restrictions. It can't sync folders larger than 250GB, files larger than 100GB, and certain file types. Make sure your folders/files do not cross these limits.

2. **Check Your OneDrive Storage** - If your OneDrive storage is almost full, it might have problems syncing. You can check your storage usage on the OneDrive website by going to "Settings", then "Options", and then "Accounts".

3. **Check File Path Length** - OneDrive can't sync files with names or file pathways longer than 400 characters.

4. **Rename and Retry** - Sometimes renaming the folder can help if a file isn't syncing. Rename the folder, move it to the OneDrive root folder, and then try to sync again.

If these solutions don't work, you might want to consider whether these folders have any special permissions or properties that could be causing the issue.

Also, just to add, while the syncing process is going on, the blue icon will appear, once the process is done, it will change to a green checkmark. So, it might be the case that the syncing process is still ongoing. Therefore, you may want to leave it a bit longer and see if anything changes. If not, feel free to get back.
 
Back
Top