Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
programm to add a scsi device after starting
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alfred Fuchs jr.  
View profile  
 More options Jul 8 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: "Alfred Fuchs jr." <afuchs76...@okay.net>
Date: 1999/07/08
Subject: programm to add a scsi device after starting
Hi,

I know, that there is the possibility, to add an extern SCSI-device e.g.
Jaz-drive to a running NT4-Sytem,
if I go to the properties, Section Streamer, an click recognize (in German:
Systemsteuerung-Bandgeraete-Erkennen)
Then, the Jaz is added.
Does anybody know a program or a link to such a programm, which does the
same?

Regards

Alfred

Alfred Fuchs
D-76698 Ubstadt


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
brole  
View profile  
 More options Jul 9 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: br...@mwt.net
Date: 1999/07/09
Subject: Re: programm to add a scsi device after starting
On Thu, 8 Jul 1999 22:11:08 +0200, "Alfred Fuchs jr."

Write a small program in C that calls DeviceIoControl with a control
code of IOCTL_SCSI_RESCAN_BUS and it should pick up any SCSI devices
that were added after powerup or last scan.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "50pin and 68pin hds on a mylex scsi card" by sjs
sjs  
View profile  
 More options Jul 11 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: "sjs" <s...@kode.net>
Date: 1999/07/11
Subject: 50pin and 68pin hds on a mylex scsi card
I have
    Vendor: QUANTUM  Model: FIREBALL ST6.4S  Rev: 0F0C

with
    SCSI Adapter: Adaptec AHA-294X SCSI host adapter
    (AIC-787x chipset)

this is a 50pin drive and giving me problems on
    Red Hat Linux release 5.0 (Hurricane)
    Kernel 2.0.31 on an i586

I want to replace the above named scsi card with mylex scsi card (which has
50 and 68 pin connector) and put the above existing hd (50 pin) and a new
one with 68pins (using two ribbons for the two connectors) and the OS as
above.

After doing this if possible, will I loose data from my existing 50pin hd?

I would appreciate greatly any responses to my question.

Thanks

Shakaib


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "programm to add a scsi device after starting" by Mark Brown
Mark Brown  
View profile  
 More options Jul 11 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: "Mark Brown" <m_br...@neo.rr.com>
Date: 1999/07/11
Subject: Re: programm to add a scsi device after starting

Alfred Fuchs jr. <afuchs76...@okay.net> wrote in message
news:7m30p7$krq$1@news01.btx.dtag.de...

Simply try powering up the device, go to the view pull down menu and hit
refresh. This should work.

Mark


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Olaf Groeger  
View profile  
 More options Jul 12 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: Olaf.Groe...@gmx.de (Olaf Groeger)
Date: 1999/07/12
Subject: Re: programm to add a scsi device after starting
I have written such a program, but you (still) need ASPI:
(
http://members.tripod.de/Olaf_Groeger/

Olaf

--
EMail: Olaf.Groe...@gmx.de


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Olaf Groeger  
View profile  
 More options Jul 15 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: Olaf.Groe...@gmx.de (Olaf Groeger)
Date: 1999/07/15
Subject: Re: programm to add a scsi device after starting
>Write a small program in C that calls DeviceIoControl with a control
>code of IOCTL_SCSI_RESCAN_BUS and it should pick up any SCSI devices
>that were added after powerup or last scan.

Yes, this is easy, but how to get a drive letter. so far i know you must
mount this now unclaimed device with IOCTL_SCSI_FIND_NEW_DEVICES, but i get
always Access denied. Did you ever used IOCTL_SCSI_FIND_NEW_DEVICES ?

yours
Olaf

--
EMail: Olaf.Groe...@gmx.de


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Eric Gisin  
View profile  
 More options Jul 16 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: "Eric Gisin" <er...@techie.com>
Date: 1999/07/16
Subject: Re: programm to add a scsi device after starting
The only thing a rescan will do is create kernel mode
\Device\Hardisk#\Partition# objects, which you can examine with winobj from
www.sysinternals.com. You then have to create the drive letter yourself with
DefineDosDevice.

Olaf Groeger wrote in message

<8E04D80C6OlafGroegergm...@news.uni-stuttgart.de>...
:>Write a small program in C that calls DeviceIoControl with a control
:>code of IOCTL_SCSI_RESCAN_BUS and it should pick up any SCSI devices
:>that were added after powerup or last scan.
:>
:Yes, this is easy, but how to get a drive letter. so far i know you must
:mount this now unclaimed device with IOCTL_SCSI_FIND_NEW_DEVICES, but i get
:always Access denied. Did you ever used IOCTL_SCSI_FIND_NEW_DEVICES ?
:

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Olaf Groeger  
View profile  
 More options Jul 16 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: Olaf.Groe...@gmx.de (Olaf Groeger)
Date: 1999/07/16
Subject: Re: programm to add a scsi device after starting
Thank you, Eric

today i have the time to attempt.

yours
Olaf

--
EMail: Olaf.Groe...@gmx.de


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin  
View profile  
 More options Jul 17 1999, 3:00 am
Newsgroups: comp.periphs.scsi
From: Kevin <kkil...@inficad.com>
Date: 1999/07/17
Subject: Re: programm to add a scsi device after starting

Mark Brown wrote:
> Simply try powering up the device, go to the view pull down menu and hit
> refresh. This should work.

Where is "view pull down menu"?

Kevin


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »