Do you have enterprise manager? If so, you can create the script and then run the script on the other PC.
The SP code is stored in syscomments. You can use a query like this to bring back the text.
Select so.name, sc.text from sysobjects so
inner join syscomments sc on so.id = sc.id
where so.xtype = 'P'