It is currently Thu Apr 18, 2024 2:54 am

All times are UTC - 7 hours [ DST ]

Recent News:



Post new topic Reply to topic  [ 9 posts ] 
Author Message
PostPosted: Tue Jan 10, 2012 4:36 pm 
Offline
Newbie
Newbie

Joined: Tue Jan 10, 2012 4:23 pm
Posts: 7
Thanks: 2
Thanked: 0 time in 0 post
i am currently experiencing a network health problem that is being caused by 4 no. corrupt files within one of my music folders. Basically a cyclic redundancy file error. I know i need to delete these files but i cant just do it from the share folder i need to do it via a command prompt. i have looked at the microsft home server help forum and i understand the D:\shares part of it to locate the files i just dont know how to execute the attrib -h [[Drive:][Path] FileName] /s /d and hit enterTo delete the file, type DEL [filename] and hit enter command ?

basically im asking what do i actually have to type to be able to execute this command as i do not understand what im suppose to be typing in ? can someone please help me as its driving me nuts


Top
 Profile  
Thanks  

Attention Guest: Remove this ad by Registering with the MediaSmartServer.net Forums. It's Free!
PostPosted: Wed Jan 11, 2012 11:59 am 
Offline
Max Contributor
Max Contributor
User avatar

Joined: Tue Jan 05, 2010 9:29 am
Posts: 1510
Thanks: 6
Thanked: 191 times in 189 posts
Could it be you found the bad file while trying to play it. Using for example twonky?
I have had that type of issue because twonky takes ownership of the file.
even during updating the twonky database.
I would turn off the folder in twonky settings, then reboot the server and try to delete it again.

_________________
VGA/PS2 Keyboard/PS2 Mouse/Serial debug board
Popcorn C-200
Popcorn A-200
Dune HD Connect
Rasberry PI OSMC(KODI)
ReadyNAS RN316
Amazon FireStick
Amazon ECHO
AnyDvD
MyMovies


Top
 Profile  
Thanks  
The following user would like to thank Ruben Rocha for this post
cacophony100
PostPosted: Wed Jan 11, 2012 12:45 pm 
Offline
Newbie
Newbie

Joined: Tue Jan 10, 2012 4:23 pm
Posts: 7
Thanks: 2
Thanked: 0 time in 0 post
thanks i will try that
tried that and still no joy , ive had to remove what i thought was the affecting drive, but the problem still exists on the the remaining 2 drives so i do need to delete the files via the prompt command so please can someone type out what i have to type to get into the drive to delete them.
many thanks


Top
 Profile  
Thanks  
PostPosted: Thu Jan 12, 2012 10:37 am 
Offline
Founder
Founder
User avatar

Joined: Tue Jul 31, 2007 11:54 am
Posts: 10735
Location: Fort Collins, Colorado
Thanks: 630
Thanked: 931 times in 885 posts
This is the best guide to resolving file conflicts, which it sounds like you have already found.
http://social.microsoft.com/Forums/en/w ... cd41365442

You can access the server via Remote Desktop.
http://www.mediasmartserver.net/wiki/in ... te_Desktop

_________________
Alex Kuretz
Remote Notification: Monitoring and alerting for your Home Server via email, Twitter, text message, RSS, push notifications, and on your Mac desktop
Have you tried our Add-Ins?


Top
 Profile  
Thanks  
PostPosted: Thu Jan 12, 2012 4:24 pm 
Offline
Newbie
Newbie

Joined: Tue Jan 10, 2012 4:23 pm
Posts: 7
Thanks: 2
Thanked: 0 time in 0 post
yakuza wrote:
This is the best guide to resolving file conflicts, which it sounds like you have already found.
http://social.microsoft.com/Forums/en/w ... cd41365442

You can access the server via Remote Desktop.
http://www.mediasmartserver.net/wiki/in ... te_Desktop



thankyou yakuzza i know that this is the forum page for the conflicts , my question is how do i execute the command i donot understand what i actually have to type in the command box to be able to achieve this.


Top
 Profile  
Thanks  
PostPosted: Fri Jan 13, 2012 1:05 am 
Offline
Uber Moderator
Uber Moderator
User avatar

Joined: Sun Dec 02, 2007 3:29 am
Posts: 1736
Location: Brighton, England
Thanks: 27
Thanked: 202 times in 152 posts
The path would convert from
Code:
attrib -h [[Drive:][Path] FileName] /s /d
to something like
Code:
attrib -h D:\shares\software\filename.xxxx /s /d
. We would need to know what errors and what files to be more exact than that. A screenshot may help.

_________________
Have you tried our Add-Ins? If so, be sure to Rate them at WeGotServed.
Help support MediaSmartServer.Net!


Top
 Profile  
Thanks  
PostPosted: Fri Jan 13, 2012 11:36 am 
Offline
Newbie
Newbie

Joined: Tue Jan 10, 2012 4:23 pm
Posts: 7
Thanks: 2
Thanked: 0 time in 0 post
Cougar wrote:
The path would convert from
Code:
attrib -h [[Drive:][Path] FileName] /s /d
to something like
Code:
attrib -h D:\shares\software\filename.xxxx /s /d
. We would need to know what errors and what files to be more exact than that. A screenshot may help.



the d share is D:\shares\music\gary`s music files\bands w\war of ages\war of ages - pride
thats the whole folder location but its 3 tracks in this folder that has recycle redundancy ie in the folder 08 - pride is one of the individual tracks which if i click on it does nothing as it cand find the location of it error cyclic redundany error etc.

the error message is cannot delete 08 : data error (cyclic redundancy check)

thanks for helping me with this so can you type out what i need to do with this please ..
many thanks


Top
 Profile  
Thanks  
PostPosted: Fri Jan 13, 2012 3:21 pm 
Offline
Uber Moderator
Uber Moderator
User avatar

Joined: Sun Dec 02, 2007 3:29 am
Posts: 1736
Location: Brighton, England
Thanks: 27
Thanked: 202 times in 152 posts
I'd run a full chkdsk on the drives first and then when complete reboot and see if the error has gone. Only after that process would I start trying to remove files. Below is a good example of a batch file to do that for you. It may take some time to complete but let it do so.

"You can use the following batch file to force chkdsk on all your drives. Copy the code below and paste it into notepad, then save it (on your server) as e.g. "checkall.cmd":"

Code:
net stop pdl

net stop whsbackup

chkdsk D: /x /r 

chkdsk C: /x /r

for /d %%1 in (C:\fs\*) do start chkdsk /x /r %%1

_________________
Have you tried our Add-Ins? If so, be sure to Rate them at WeGotServed.
Help support MediaSmartServer.Net!


Top
 Profile  
Thanks  
The following user would like to thank Cougar for this post
cacophony100
PostPosted: Fri Jan 13, 2012 4:42 pm 
Offline
Newbie
Newbie

Joined: Tue Jan 10, 2012 4:23 pm
Posts: 7
Thanks: 2
Thanked: 0 time in 0 post
thanks cougar, im running the disc checks will post when i get the results, hopefully all will be fine..


Top
 Profile  
Thanks  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 9 posts ] 

All times are UTC - 7 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 30 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group