- published: 26 Jan 2013
- views: 7872301
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Michael Schenker (born Michael Willy Schenker, 10 January 1955) is a German rock guitarist, best known for his tenure in UFO, in addition to his solo band. Nicknamed the "Blonde Bomber", he first rose to fame as an early member of Scorpions, then achieved fame in the mid-1970s as the lead guitar player for UFO. Since leaving UFO in 1978, he has been leading the Michael Schenker Group in various incarnations. He has rejoined UFO three times, producing an album each time. He is the younger brother of Rudolf Schenker, who is still a guitarist with Scorpions. His career has had many ups and downs, partly due to a long history of alcoholism and personal problems; still, Schenker continues to perform and record. He has been called "a legendary figure in the history of metal guitar."
Michael Schenker started playing guitar at an early age, after his brother Rudolf got a guitar for his birthday, Gibson Flying V guitar, which captured his imagination. He played his first gig when he was 11, with Rudolf and the Scorpions in a nightclub. Schenker debuted with Scorpions on their debut album Lonesome Crow at age 17.
Assault Attack is the third studio album from The Michael Schenker Group, and the only album to feature former Rainbow vocalist Graham Bonnet. The album was recorded in France at the Château d'Hérouville and was produced by Martin Birch.
After returning to the UK from Japan in August 1981, having recorded the live album One Night at Budokan, Schenker and his band played a short tour of the UK. After the tour, Cozy Powell and Peter Mensch (Michael Schenker Group's manager) wanted a better singer for the band and suggested David Coverdale, but Schenker himself wanted Graham Bonnet. After some disagreements, which ultimately led to the termination of the cooperation between Mensch and MSG, Bonnet joined the MSG in February 1982. Meanwhile, Powell and Paul Raymond left the band for their own reasons and were replaced by drummer Ted McKenna and session keyboardist Tommy Eyre. After four months the band went to France to start recording the album that would become Assault Attack with producer Martin Birch, who arrived fresh from Iron Maiden's album The Number of the Beast. The sessions took place at a French castle, Le Château d'Hérouville.
The Michael Schenker Group is a guitar-oriented hard rock band formed in 1979 by former Scorpions and UFO guitarist, Michael Schenker. In 1986, Schenker and vocalist Robin McAuley formed the McAuley Schenker Group, which lasted until 1993. After that, in 1996 the Michael Schenker Group was reformed.
The music is best described as mostly melodic hard rock with progressive undertones. Schenker is famous for his half-black, half-white Gibson Flying V and for his unorthodox approach to lead guitar. He is sponsored by Dean Guitars and is well known in the neo-classical genre.
The Michael Schenker Group is the first album by the hard rock band Michael Schenker Group.
Made #1 on KTUH's charts on the week of September 29, 1980.
The song "Armed and Ready" is featured in the video game Guitar Hero: Metallica.
All songs written by Michael Schenker and Gary Barden unless otherwise noted.
MICHAEL SCHENKER PERFORMING LIVE FEATURING JEFF SCOTT SOTO ( VOCALS ) RUDY SCHENKER PETE WAY & HERMAN RAREBELL!
Michael Schenker Fest Tokyo 2016
Setlist 1. MICHAEL SCHENKER GROUP – INTO THE ARENA 00:00:00 2. MICHAEL SCHENKER GROUP – CRY FOR THE NATIONS 00:04:33 3. MICHAEL SCHENKER GROUP – DOCTOR DOCTOR 00:10:16 4. MICHAEL SCHENKER GROUP – LOOKING FOR LOVE 00:14:22 5. MICHAEL SCHENKER GROUP – LIGHTS OUT 00:18:26 6. MICHAEL SCHENKER GROUP – RED SKY 00:23:38 7. MICHAEL SCHENKER GROUP – SHOOT SHOOT 00:28:59 8. MICHAEL SCHENKER GROUP – SAIL THE DARKNESS 00:33:32 9. MICHAEL SCHENKER GROUP – LET IT ROLL 00:38:44 10. MICHAEL SCHENKER GROUP – EMERGENCY 00:43:24 11. MICHAEL SCHENKER GROUP – NATURAL THING 00:47:14 12. MICHAEL SCHENKER GROUP – ARMED & READY 00:51:06 13. MICHAEL SCHENKER GROUP – WE ARE THE VOICE 00:55:56 14. MICHAEL SCHENKER GROUP – ASSAULT ATTACK 00:59:33 15. MICHAEL SCHENKER GROUP – ROCK BOTTOM 01:04:06 16. MICHAEL SCHENKER G...
Subscribe to Chrysalis Records' YouTube channel: https://chrys.lnk.to/Subscribe Official music video for Armed and Ready by The Michael Schenker Group. Connect with CHRYSALIS RECORDS: Website: https://www.blueraincoatmusic.com/chrysalisrecords/ Instagram: https://chrys.lnk.to/IN Facebook: https://chrys.lnk.to/FB Twitter: https://chrys.lnk.to/TW Spotify - https://chrys.lnk.to/SP Follow The Michael Schenker Group; Listen to The Michael Schenker Group online - https://MSchenker.lnk.to/Listen Facebook - https://MSchenker.lnk.to/FB Twitter - https://MSchenker.lnk.to/TW Lyrics: Are you high tonight, are you feeling right, Cause I need you now, like I never did before, Is it hard enough, is it loud enough Cause if you don't approve, you can use the door Armed and ready, I gotta gun sight tra...
Taken off the album "Resurrection" Director: Aleksander Makov Executive producer: Oleg Larionov Director of photography: Yuri Iskhakov Second operator: Andrey Nesteruk Makeup Artist: Kirill Akulinitchev Technical support: Dmitry Smirnov ▶ Order MICHAEL SCHENKER 🛒 https://msg.afr.link/shopYT ▶ FOLLOW @ATOMIC FIRE 🛒 https://www.atomicfire-records.com YouTube https://afr.link/YTsub Instagram https://afr.link/instagram Facebook https://afr.link/facebook Twitter https://afr.link/twitter TikTok https://afr.link/tiktok ▶ FOLLOW MICHAEL SCHENKER Facebook: https://www.facebook.com/MichaelSchenkerRocks Instagram: https://www.instagram.com/michaelschenkerrocks Twitter: https://twitter.com/mw_schenker MICHAEL SCHENKER is: Michael Schenker - Guitars Lyrics: Take Me To The Church With a heart...
Michael Schenker rehearsal in Brighton (UK) in a scuzzy rehearsal room that's only about 1 mile down the road from my house. Guitar - Michael Schenker Drums - Herman Rarebell Bass - Francis Buchholz Vocals - Doogie White I was overjoyed to find out not only Herman Rarebell, Nick Cave, Dave Gilmour and Phil Mogg live here, but also the mighty Schenker!
MSG Performing live from Hamburg,1981.[3] Michael Schenker(Guitar) Gary Barden(Rhythm Guitar) Chris Glen(Bass) Paul Raymond(Keyboards/Rhythm Guitar/B.Vocals) Cozy Powell (Drums) [RIP]
This new box set by MSG is a fabulous set. This is an unboxing and first look at this excellent set, available on the 28th of March Buy it here: Amazon UK: https://amzn.to/3Ibzpvf Amazon USA: If you like my channel and appreciate the work that goes into my videos, please support my channel. You can - Become a Patron! - Be part of a Classic Rock Community! There is a fine body of work on there now. https://www.patreon.com/classicrock Make a one-time donation! Help me to make more videos or buy stuff to annoy my wife with and unbox on my channel: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=46G7795CU9VBA&source=url Gift me something to unbox from my Amazon Wish List: https://www.amazon.co.uk/hz/wishlist/ls/1T8FFB9GS4H25?ref_=wl_share Buy me a ...
The Michael Schenker Group – Assault Attack 1982
Subscribe to Chrysalis Records' YouTube channel: https://chrys.lnk.to/Subscribe Official music video for Armed and Ready by The Michael Schenker Group. Connect with CHRYSALIS RECORDS: Website: https://www.blueraincoatmusic.com/chrysalisrecords/ Instagram: https://chrys.lnk.to/IN Facebook: https://chrys.lnk.to/FB Twitter: https://chrys.lnk.to/TW Spotify - https://chrys.lnk.to/SP Follow The Michael Schenker Group; Listen to The Michael Schenker Group online - https://MSchenker.lnk.to/Listen Facebook - https://MSchenker.lnk.to/FB Twitter - https://MSchenker.lnk.to/TW Lyrics: Are you high tonight, are you feeling right, Cause I need you now, like I never did before, Is it hard enough, is it loud enough Cause if you don't approve, you can use the door Armed and ready, I gotta gun sight tra...
Michael Schenker Group live at the Rock Hard Festival in Gelsenkirchen, Germany on May 28th, 2023. All info/tour news at https://michaelschenkerhimself.com/ Also, check out the British Melodic Rock of 'Geoff Carne & the Raw Rox Band' at https://www.geoffcarne.com/ Setlist: 1. Into The Arena 2. Cry For The Nations 3. Doctor Doctor 4. Looking For Love 5. Lights Out 6. Red Sky 7. Shoot Shoot 8. Sail The Darkness 9. Let It Roll 10. Emergency 11. Natural Thing 12. Armed & Ready 13. We Are the Voice 14. Assault Attack 15. Rock Bottom 16. Too Hot To Handle 17. Only You Can Rock Me
MICHAEL SCHENKER PERFORMING LIVE FEATURING JEFF SCOTT SOTO ( VOCALS ) RUDY SCHENKER PETE WAY & HERMAN RAREBELL!
Nach seinem Weggang von UFO und den Scorpions erfüllte sich Gitarrengenie Michael Schenker 1979 einen Traum und gründete sein Soloprojekt Michael Schenker Group (MSG). Mit der Band, in der sein virtuoses Gitarrenspiel im Mittelpunkt steht, führt Schenker bis heute konsequent den klassischen Hard Rock-Sound der 1980er fort. Michael Schenker aus dem beschaulichen Sarstedt bei Hildesheim ist einer der besten und einflussreichsten Rock-Gitarristen aller Zeiten. Sein Stil gilt als präzise und technisch versiert, gleichzeitig elegant und melodisch. Der Mann mit der Flying V-Gitarre kann auf eine erfolgreiche und aufregende Karriere zurückblicken, in der er auf über 50 Alben mitgewirkt hat. im zarten Alter von 16 Jahren wurde Michael Schenker Leadgitarrist bei den Scorpions an der Seite seines ...
Music video by The Michael Schenker Group performing Desert Song. Follow Chrysalis Records; Subscribe - https://chrys.lnk.to/Subscribe Spotify - https://chrys.lnk.to/SP Facebook - https://chrys.lnk.to/FB Twitter - https://chrys.lnk.to/TW Instagram - https://chrys.lnk.to/IN Website - https://chrys.lnk.to/online Lyrics: We're sailing ships across the desert And fading in the Arabian sun You're stallion stands to watch the sun set The women scream as the camels run To find a mirage cool oasis And lie beneath the palms and the sky And spend the night a silver moon set The rising sun in the eagles eye The heat of a dusky lady, Born on the sand Burnin' with desert fire, Cooling the man Endless is the blowing desert And in the shipwreck some may be lost Too hot the sand too deep the oceans It'...
A1 Armed And Ready 00:00 A2 Cry For The Nations 04:07 A3 Victim Of Illusion 09:19 A4 Bijou Pleasurette 14:02 A5 Feels Like A Good Thing 16:19 B1 Into The Arena 20:05 B2 Looking Out From Nowhere 24:17 B3 Tales Of Mystery 28:48 B4 Lost Horizons 32:09
WE DON'T RECEIVE ANYTHING FROM YOUTUBE, SO IF YOU LIKE OUR WORK YOU CAN SUPPORT US WITH A DONATION BY CLICKING ON THE LINKS BELOW: PAYPAL: [email protected] USD: https://www.paypal.com/donate?hosted_button_id=2MZAVWYSCS6NW EURO: https://www.paypal.com/donate?hosted_button_id=E8EMS3UULKSPC CLICK BELOW TO ORDER THIS ALBUM: https://www.atomicfire-records.com/category/3672 WE DO NOT OWN THE COPYRIGHT OF THE VIDEOS POSTED ON THIS CHANNEL!!! ALL MONETIZATION OF THIS CHANNEL GOES TO THE COPYRIGHT HOLDERS!!! IF YOU WANT YOU TO REMOVE YOUR VIDEO, SEND AN EMAIL TO [email protected] AND WE WILL REMOVE THE VIDEO AS SOON AS POSSIBLE!!! Band: Michael Schenker Group Album: Universal Genre: Heavy Metal Country: Germany Label: Atomic Fire ------- Michael Schenker Group ------- Faceboo...
Michael Schenker Group with Cozy Powell live at the 1981 Pinkpop festival in The Netherlands. Music starts at 02:34.
Michael Schenker group MSGより 81年リリース MSG として2枚目のアルバムです! このアルバムからコージーパウエルが参加しています。勢いが出てきた頃です。 この曲はライブでもよく取り上げられる名曲です。 #弾いてみた #ハードロック #ヘビメタ #ワウ #MSG #マイケルシェンカー
Michael Schenker (born Michael Willy Schenker, 10 January 1955) is a German rock guitarist, best known for his tenure in UFO, in addition to his solo band. Nicknamed the "Blonde Bomber", he first rose to fame as an early member of Scorpions, then achieved fame in the mid-1970s as the lead guitar player for UFO. Since leaving UFO in 1978, he has been leading the Michael Schenker Group in various incarnations. He has rejoined UFO three times, producing an album each time. He is the younger brother of Rudolf Schenker, who is still a guitarist with Scorpions. His career has had many ups and downs, partly due to a long history of alcoholism and personal problems; still, Schenker continues to perform and record. He has been called "a legendary figure in the history of metal guitar."
Michael Schenker started playing guitar at an early age, after his brother Rudolf got a guitar for his birthday, Gibson Flying V guitar, which captured his imagination. He played his first gig when he was 11, with Rudolf and the Scorpions in a nightclub. Schenker debuted with Scorpions on their debut album Lonesome Crow at age 17.
Look around,
all that surrounds you
Involved in constant change
Fear of life,
their reasons astound you
Strong wills may lead to the fray
But I know your fears
Wipe back the tears
from your eyes You knew
all along
Under fire,
you keep moving on
Assault attack
Can we all with stand the rain
Not forgetting just the same
Hand in hand,
we'll fight together
Responsible eyes,
heads constantly turning
I want to know who's to blame
Evil minds say,
you don't have to worry
Only the innocent pay
I know your fears
Wipe back the tears from your eyes Yeah,
you knew all along Still it cannot change
our song
Assault attack
Can we all with stand the rain
Not forgetting just the same
Hand in hand
we'll walk together
(Solo)
Well I know your fears
Wipe back the tears from your eyes Yeah,
you knew all along Under fire,
you keep movin' on
Assault attack
Can we all withstand the rain
Not forgetting just the same
Hand in hand
we'll fight together
Assault attack
We just keep on movin'
Got to find a solution
It's up to you to lead the way
Assault attack
Can we all withstand the rain
Not forgetting just the same
Hand in hand
we'll fight together
Assault attack
We just keep on movin' Got to
find a solution Ahhh, yeah, we need it