windows question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting windows question
# 1  
Old 06-23-2009
windows question

Hi guys!

I've a windows questions couse I want to prank a friend with the grudge screem.

So what I need to do is to run a flv video from a bat file and I know how to do this with linux and a sh file but not with windows. So to start how do I run a video from it??

Than I would be nice to run at the startup and then 5 min later

Thanks in advance
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

(yet another) copy files from windows to server question

Hi all, I spent the last few hours Googling for a solution without result, so here goes: I have Windows server 'source' that produces files that need to be copied to an external Linux server 'target'. I initiate this process from AIX server 'jobrunner'. An additional step is a Linux server... (2 Replies)
Discussion started by: whbos
2 Replies

2. Windows & DOS: Issues & Discussions

Question; AWK to analyze Windows Server 2k3 logs

Hey, I am looking in to the possibility of trying to analyze Windows Server 2003 files by using the AWK filtering(programming) language, first off. Secondly I'm looking in to the possibility of implementing AWK (results/or the script itself) inside a "Microsoft Access 2007"-database. Some... (1 Reply)
Discussion started by: abciscool
1 Replies

3. UNIX for Dummies Questions & Answers

Newbie: X-Windows Question

I just got a Sunblade running Solaris 9. I am wanting to be able to connect to it from Windows XP Pro and use X-windows. Can someone point me in the right direction on what I need to do? I have tried using several programs I have found on the web to to the XServer stuff but when I log in to the... (3 Replies)
Discussion started by: micstone
3 Replies

4. UNIX for Advanced & Expert Users

a question on CIFS on windows client.

Hi, this might be a little off-topic (since it involves windows) 1) I mounted a volume using cifs on windows. That volume has a symbolic link (which was created using a solaris client) Is there anyway to know from my windows client that a particular file is actually a symbolic link ?? 2) The... (1 Reply)
Discussion started by: the_learner
1 Replies

5. UNIX for Dummies Questions & Answers

Simple Windows-to-Unix SCP question

Hi, I am fairly new to Unix. My school computers have only UNIX installed on them, and I wish to use them to do some parallel computing. To do so, I need to transfer the files from my Windows computer to my Unix account on a different computer. I am using the SSH login with the Putty client.... (2 Replies)
Discussion started by: Duchesne
2 Replies
Login or Register to Ask a Question
ddi_dma_numwin(9F)					   Kernel Functions for Drivers 					ddi_dma_numwin(9F)

NAME
ddi_dma_numwin - retrieve number of DMA windows SYNOPSIS
#include <sys/ddi.h> #include <sys/sunddi.h> int ddi_dma_numwin(ddi_dma_handle_t handle, uint_t *nwinp); PARAMETERS
handle The DMA handle previously allocated by a call to ddi_dma_alloc_handle(9F). nwinp Upon a successful return, nwinp will contain the number of DMA windows for this object. INTERFACE LEVEL
Solaris DDI specific (Solaris DDI). DESCRIPTION
ddi_dma_numwin() returns the number of DMA windows for a DMA object if partial resource allocation was permitted. RETURN VALUES
ddi_dma_numwin() returns: DDI_SUCCESS Successfully filled in the number of DMA windows. DDI_FAILURE DMA windows are not activated. CONTEXT
ddi_dma_numwin() can be called from user, kernel, or interrupt context. SEE ALSO
ddi_dma_addr_bind_handle(9F), ddi_dma_alloc_handle(9F), ddi_dma_buf_bind_handle(9F), ddi_dma_unbind_handle(9F) Writing Device Drivers SunOS 5.10 29 Sep 1994 ddi_dma_numwin(9F)